From 8e94d40e90b5ed006090af64ff7017a2d4f1a802 Mon Sep 17 00:00:00 2001 From: snowdrop Date: Sun, 9 Jul 2006 16:24:18 +0000 Subject: ported logging function to a seperate file (nanohttp-logging.*) and renamed all logging functions. --- libcsoap/soap-client.c | 3 ++- libcsoap/soap-ctx.c | 4 +++- libcsoap/soap-env.c | 10 ++++++---- libcsoap/soap-fault.c | 4 +++- libcsoap/soap-router.c | 4 +++- libcsoap/soap-server.c | 3 ++- libcsoap/soap-service.c | 3 ++- libcsoap/soap-xml.c | 4 +++- 8 files changed, 24 insertions(+), 11 deletions(-) (limited to 'libcsoap') 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 #endif +#include #include #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 #endif +#include + #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 #endif -#include "soap-xml.h" -#include "soap-env.h" - #ifdef WIN32 #define USE_XMLSTRING #endif @@ -52,6 +49,11 @@ #include #endif +#include + +#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 #endif +#include + #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 #endif +#include + #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 #include #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 #endif +#include #include #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 #endif +#include + #include "soap-xml.h" xmlNodePtr -- cgit v1.1-32-gdbae