summaryrefslogtreecommitdiffstats
path: root/src/wsman-client-options.h
blob: d14fedd5adbb5a8fd0165c5d0ce499c8d6c167a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

#ifndef WSMANCLIENTOPTIONS_H_
#define WSMANCLIENTOPTIONS_H_

struct _WsActions {
	char *action;
	int value;
};
typedef struct _WsActions WsActions;


extern int wsman_read_client_config(dictionary * ini);

extern char wsman_parse_options(int argc, char **argv);
extern void wsman_setup_transport_and_library_options(void);

extern char *wsman_options_get_server(void);
extern int wsman_options_get_server_port(void);
extern char *wsman_options_get_path(void);
extern char *wsman_options_get_username(void);
extern char *wsman_options_get_password(void);
extern char *wsman_options_get_cafile(void);

extern int wsman_options_get_max_elements(void);
extern char *wsman_options_get_test_file(void);
extern char *wsman_options_get_input_file(void);
extern int wsman_options_get_action(void);
extern char *wsman_options_get_resource_uri(void);
extern hash_t *wsman_options_get_properties(void);
extern char *wsman_options_get_invoke_method(void);
extern char *wsman_options_get_enum_mode(void);
extern char *wsman_options_get_binding_enum_mode(void);
extern char *wsman_options_get_cim_namespace(void);
extern char wsman_options_get_optimize_enum(void);
extern char wsman_options_get_cim_ext(void);
extern char wsman_options_get_dump_request(void);
extern char wsman_options_get_step_request(void);
extern char wsman_options_get_estimate_enum(void);
extern char *wsman_options_get_fragment(void);
extern char *wsman_options_get_filter(void);

extern char *wsman_options_get_dialect(void);
extern const char *wsman_options_get_config_file(void);
extern unsigned long wsman_options_get_max_envelope_size(void);
extern unsigned long wsman_options_get_operation_timeout(void);

extern char *wsman_options_get_enum_context(void);

extern const char **wsman_options_get_argv(void);
extern const char *wsman_options_get_output_file(void);

#endif				/*WSMANCLIENTOPTIONS_H_ */