Improve management SOAP request/response with Director

This commit is contained in:
vemax78
2013-11-24 16:36:08 +01:00
parent bb44612672
commit f0c5146563
5 changed files with 177 additions and 76 deletions

View File

@ -4,6 +4,11 @@
/* */
#define SOAP_NAMESPACE_URI "http://smartcapwap/namespace"
/* SOAP event status*/
#define SOAP_EVENT_STATUS_GENERIC_ERROR -1
#define SOAP_EVENT_STATUS_RUNNING 0
#define SOAP_EVENT_STATUS_COMPLETE 1
/* Reset notification */
struct ac_notify_reset_t {
uint32_t vendor;
@ -16,6 +21,6 @@ void ac_backend_stop(void);
/* */
int ac_backend_isconnect(void);
struct ac_http_soap_server* ac_backend_gethttpsoapserver(void);
struct ac_http_soap_request* ac_backend_createrequest_with_session(char* method, char* uri);
#endif /* __AC_BACKEND_HEADER__ */