summaryrefslogtreecommitdiffstats
path: root/src/wsman-client-options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wsman-client-options.c')
-rw-r--r--src/wsman-client-options.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wsman-client-options.c b/src/wsman-client-options.c
index 3c21014..26b3b32 100644
--- a/src/wsman-client-options.c
+++ b/src/wsman-client-options.c
@@ -86,6 +86,7 @@ char step = 0;
char request_only = 0;
char cim_extensions = 0;
char cim_references = 0;
+char cim_associators = 0;
static char *enum_mode = NULL;
static char *binding_enum_mode = NULL;
static char *enum_context = NULL;
@@ -213,6 +214,8 @@ char wsman_parse_options(int argc, char **argv)
"Show CIM Extensions", NULL},
{"references", 'W', U_OPTION_ARG_NONE, &cim_references,
"CIM References", NULL},
+ {"associators", 'w', U_OPTION_ARG_NONE, &cim_associators,
+ "CIM Associators", NULL},
{NULL}
};
@@ -436,6 +439,11 @@ char wsman_options_get_cim_ref(void)
return cim_references;
}
+char wsman_options_get_cim_assoc(void)
+{
+ return cim_associators;
+}
+
char wsman_options_get_cim_ext(void)
{
return cim_extensions;