30 lines
520 B
C
30 lines
520 B
C
#ifndef CIM_INTERFACE_H_
|
|
#define CIM_INTERFACE_H_
|
|
|
|
|
|
|
|
#define DEFAULT_HTTP_CIMOM_PORT "5988"
|
|
#define CIM_NAMESPACE "root/cimv2"
|
|
|
|
|
|
struct __CimClientInfo
|
|
{
|
|
void *cc;
|
|
WsContextH cntx;
|
|
hash_t *namespaces;
|
|
hash_t *selectors;
|
|
char* cim_namespace;
|
|
char* resource_uri;
|
|
char* method;
|
|
hash_t *method_args;
|
|
char* requested_class;
|
|
char* username;
|
|
char* password;
|
|
unsigned long flags;
|
|
};
|
|
|
|
typedef struct __CimClientInfo CimClientInfo;
|
|
|
|
#endif
|
|
|