summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-admin.h
diff options
context:
space:
mode:
authorGravatar m0gg2007-11-03 22:40:09 +0000
committerGravatar m0gg2007-11-03 22:40:09 +0000
commit8a6946b18003fae6400a137389f0cb13d0ac4bd6 (patch)
tree1fb0e6f58de5596f8dae00998da18472fb4952a1 /libcsoap/soap-admin.h
parentc1a7b2dabdc691139b744f0d4750f3b797b69073 (diff)
downloadcsoap-8a6946b18003fae6400a137389f0cb13d0ac4bd6.tar.gz
csoap-8a6946b18003fae6400a137389f0cb13d0ac4bd6.tar.bz2
Split nanoHTTP and cSOAP logging
Diffstat (limited to 'libcsoap/soap-admin.h')
-rw-r--r--libcsoap/soap-admin.h24
1 files changed, 17 insertions, 7 deletions
diff --git a/libcsoap/soap-admin.h b/libcsoap/soap-admin.h
index 2e0ca80..838a75b 100644
--- a/libcsoap/soap-admin.h
+++ b/libcsoap/soap-admin.h
@@ -1,8 +1,9 @@
/******************************************************************
- * $Id: soap-admin.h,v 1.5 2006/12/31 17:24:22 m0gg Exp $
+ * $Id: soap-admin.h,v 1.6 2007/11/03 22:40:09 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
- * Copyright (C) 2003 Ferhat Ayaz
+ * Copyright (C) 2003-2006 Ferhat Ayaz
+ * Copyright (C) 2007 Heiko Ronsdorf
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -24,6 +25,13 @@
#ifndef __csoap_admin_h
#define __csoap_admin_h
+/** @file soap-admin.h HTTP administrator interface
+ *
+ * @defgroup CSOAP_ADMIN
+ * @ingroup CSOAP
+ */
+/**@{*/
+
#define CSOAP_ENABLE_ADMIN "-CSOAPadmin"
#define CSOAP_ADMIN_QUERY_ROUTERS "routers"
@@ -36,19 +44,19 @@
#define CSOAP_ADMIN_URN "urn"
#define CSOAP_ADMIN_METHOD "method"
+#define CSOAP_ADMIN_CONTEXT "csoap"
+
#ifdef __cplusplus
extern "C" {
#endif
-/**
- *
- * Initializes the soap admin HTTP interface with commandline arguments.
+/** This function initializes the cSOAP admin HTTP interface with
+ * commandline arguments.
*
* @param argc commandline arg count
* @param argv commandline arg vector
*
- * @returns 1 if success, 0 otherwise
- *
+ * @returns H_OK on success.
*/
extern herror_t soap_admin_init_args(int argc, char **argv);
@@ -56,4 +64,6 @@ extern herror_t soap_admin_init_args(int argc, char **argv);
}
#endif
+/**@}*/
+
#endif