summaryrefslogtreecommitdiffstats
path: root/libcsoap
diff options
context:
space:
mode:
authorGravatar snowdrop2006-07-09 16:24:18 +0000
committerGravatar snowdrop2006-07-09 16:24:18 +0000
commit8e94d40e90b5ed006090af64ff7017a2d4f1a802 (patch)
treed75f7d201eb5cf7236f2d0dc1ca18a44910eda49 /libcsoap
parent1b6cc73eff4ecc9ec0b2be81841d495a3cb53fc9 (diff)
downloadcsoap-8e94d40e90b5ed006090af64ff7017a2d4f1a802.tar.gz
csoap-8e94d40e90b5ed006090af64ff7017a2d4f1a802.tar.bz2
ported logging function to a seperate file (nanohttp-logging.*)r1_1_0
and renamed all logging functions.
Diffstat (limited to 'libcsoap')
-rw-r--r--libcsoap/soap-client.c3
-rwxr-xr-xlibcsoap/soap-ctx.c4
-rw-r--r--libcsoap/soap-env.c10
-rw-r--r--libcsoap/soap-fault.c4
-rw-r--r--libcsoap/soap-router.c4
-rw-r--r--libcsoap/soap-server.c3
-rw-r--r--libcsoap/soap-service.c3
-rw-r--r--libcsoap/soap-xml.c4
8 files changed, 24 insertions, 11 deletions
diff --git a/libcsoap/soap-client.c b/libcsoap/soap-client.c
index cdf4d55..67b7681 100644
--- a/libcsoap/soap-client.c
+++ b/libcsoap/soap-client.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-client.c,v 1.26 2006/03/07 16:21:47 m0gg Exp $
+* $Id: soap-client.c,v 1.27 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -33,6 +33,7 @@
#include <stdio.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
#include <nanohttp/nanohttp-client.h>
#include "soap-client.h"
diff --git a/libcsoap/soap-ctx.c b/libcsoap/soap-ctx.c
index a06b897..393dceb 100755
--- a/libcsoap/soap-ctx.c
+++ b/libcsoap/soap-ctx.c
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-ctx.c,v 1.9 2006/02/27 22:26:02 snowdrop Exp $
+ * $Id: soap-ctx.c,v 1.10 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -37,6 +37,8 @@
#include <errno.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
+
#include "soap-ctx.h"
SoapCtx *
diff --git a/libcsoap/soap-env.c b/libcsoap/soap-env.c
index b16a1f3..0536065 100644
--- a/libcsoap/soap-env.c
+++ b/libcsoap/soap-env.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-env.c,v 1.19 2006/03/15 15:11:47 m0gg Exp $
+* $Id: soap-env.c,v 1.20 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -41,9 +41,6 @@
#include <errno.h>
#endif
-#include "soap-xml.h"
-#include "soap-env.h"
-
#ifdef WIN32
#define USE_XMLSTRING
#endif
@@ -52,6 +49,11 @@
#include <libxml/xmlstring.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
+
+#include "soap-xml.h"
+#include "soap-env.h"
+
/*
Parameters:
1- soap_env_ns
diff --git a/libcsoap/soap-fault.c b/libcsoap/soap-fault.c
index 9de1e2b..c4768e6 100644
--- a/libcsoap/soap-fault.c
+++ b/libcsoap/soap-fault.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-fault.c,v 1.10 2006/03/06 13:37:38 m0gg Exp $
+* $Id: soap-fault.c,v 1.11 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -29,6 +29,8 @@
#include <string.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
+
#include "soap-fault.h"
#include "soap-xml.h"
diff --git a/libcsoap/soap-router.c b/libcsoap/soap-router.c
index ad8edd3..cd0cca4 100644
--- a/libcsoap/soap-router.c
+++ b/libcsoap/soap-router.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-router.c,v 1.9 2006/05/15 06:41:33 m0gg Exp $
+* $Id: soap-router.c,v 1.10 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -33,6 +33,8 @@
#include <errno.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
+
#include "soap-router.h"
SoapRouter *
diff --git a/libcsoap/soap-server.c b/libcsoap/soap-server.c
index 9c77070..5448de7 100644
--- a/libcsoap/soap-server.c
+++ b/libcsoap/soap-server.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-server.c,v 1.25 2006/05/24 15:18:52 mrcsys Exp $
+* $Id: soap-server.c,v 1.26 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -37,6 +37,7 @@
#define snprintf(buffer, num, s1, s2) sprintf(buffer, s1,s2)
#endif
+#include <nanohttp/nanohttp-logging.h>
#include <nanohttp/nanohttp-server.h>
#include "soap-admin.h"
diff --git a/libcsoap/soap-service.c b/libcsoap/soap-service.c
index fd72ce6..e2a486a 100644
--- a/libcsoap/soap-service.c
+++ b/libcsoap/soap-service.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-service.c,v 1.7 2006/02/27 22:26:02 snowdrop Exp $
+* $Id: soap-service.c,v 1.8 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -29,6 +29,7 @@
#include <string.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
#include <nanohttp/nanohttp-common.h>
#include "soap-service.h"
diff --git a/libcsoap/soap-xml.c b/libcsoap/soap-xml.c
index 37487d3..801bdd1 100644
--- a/libcsoap/soap-xml.c
+++ b/libcsoap/soap-xml.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-xml.c,v 1.10 2006/02/27 22:26:02 snowdrop Exp $
+* $Id: soap-xml.c,v 1.11 2006/07/09 16:24:19 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -25,6 +25,8 @@
#include <config.h>
#endif
+#include <nanohttp/nanohttp-logging.h>
+
#include "soap-xml.h"
xmlNodePtr