diff options
author | m0gg | 2006-11-30 14:23:58 +0000 |
---|---|---|
committer | m0gg | 2006-11-30 14:23:58 +0000 |
commit | df58dad240fe368c261263e248d3520d3e0be1a3 (patch) | |
tree | 3fe4e4f6c318aee4bce1b72e0827a8f3300f3b7b /libcsoap | |
parent | cbd1f84a6125931a2f64279aa5da5121a66e3cf1 (diff) | |
download | csoap-df58dad240fe368c261263e248d3520d3e0be1a3.tar.gz csoap-df58dad240fe368c261263e248d3520d3e0be1a3.tar.bz2 |
Code cleanup
Diffstat (limited to 'libcsoap')
-rw-r--r-- | libcsoap/Makefile.am | 20 | ||||
-rw-r--r-- | libcsoap/soap-client.h | 10 | ||||
-rw-r--r-- | libcsoap/soap-server.h | 17 |
3 files changed, 32 insertions, 15 deletions
diff --git a/libcsoap/Makefile.am b/libcsoap/Makefile.am index e5518cb..bb00615 100644 --- a/libcsoap/Makefile.am +++ b/libcsoap/Makefile.am @@ -1,17 +1,19 @@ - +# +# $Revision: 1.14 $ +# lib_LTLIBRARIES=libcsoap.la libcsoap_ladir=$(includedir)/libcsoap-@csoap_release@/libcsoap -libcsoap_la_SOURCES=soap-xml.c soap-fault.c soap-env.c soap-service.c \ - soap-router.c soap-client.c soap-server.c soap-ctx.c \ - soap-admin.c soap-addressing.c soap-transport.c \ - soap-nudp.c soap-nhttp.c soap-wsil.c +libcsoap_la_SOURCES=soap-xml.c soap-fault.c soap-env.c soap-service.c \ + soap-router.c soap-client.c soap-server.c soap-ctx.c \ + soap-admin.c soap-addressing.c soap-transport.c \ + soap-nudp.c soap-nhttp.c soap-wsil.c \ -libcsoap_la_HEADERS=soap-xml.h soap-fault.h soap-env.h soap-service.h \ - soap-router.h soap-client.h soap-server.h soap-ctx.h \ - soap-admin.h soap-addressing.h soap-transport.h \ - soap-nudp.h soap-nhttp.h soap-wsil.h +libcsoap_la_HEADERS=soap-fault.h soap-env.h soap-service.h soap-router.h \ + soap-client.h soap-server.h soap-ctx.h soap-addressing.h \ + soap-transport.h soap-admin.h soap-wsil.h soap-nudp.h \ + soap-nhttp.h soap-xml.h if BUILD_WITH_XMLSEC1 libcsoap_la_SOURCES+=soap-xmlsec.c diff --git a/libcsoap/soap-client.h b/libcsoap/soap-client.h index 30d2f00..e821b9b 100644 --- a/libcsoap/soap-client.h +++ b/libcsoap/soap-client.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-client.h,v 1.15 2006/11/29 11:04:25 m0gg Exp $ + * $Id: soap-client.h,v 1.16 2006/11/30 14:23:59 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -24,6 +24,14 @@ #ifndef __csoap_client_h #define __csoap_client_h +#ifndef __CSOAP_INTERNAL +#include <nanohttp/nanohttp-client.h> + +#include <libcsoap/soap-ctx.h> +#include <libcsoap/soap-env.h> +#include <libcsoap/soap-addressing.h> +#endif + #define SOAP_ERROR_CLIENT 5000 #define SOAP_ERROR_CLIENT_GENERIC (SOAP_ERROR_CLIENT + 0) #define SOAP_ERROR_CLIENT_INIT (SOAP_ERROR_CLIENT + 1) diff --git a/libcsoap/soap-server.h b/libcsoap/soap-server.h index afb3a3a..3a9ac32 100644 --- a/libcsoap/soap-server.h +++ b/libcsoap/soap-server.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-server.h,v 1.14 2006/11/29 11:04:25 m0gg Exp $ + * $Id: soap-server.h,v 1.15 2006/11/30 14:23:59 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -37,15 +37,22 @@ * @section seq_features Features * * - different transport services - * -- client/server HTTP transport service (with SSL) - * -- client/server UDP transport service (multicast) + * -# client/server HTTP transport service (including SSL) + * -# client/server UDP transport service (multicast) * - attachments via MIME * - message based security (encryption/signation) * - automatic generation of WS-Inspection * - * @author Ferhat Ayaz - * @version $Revision: 1.14 $ + * @author Ferhat Ayaz, + * Michael Rans, + * Matt Campbell, + * Heiko Ronsdorf * + * @version $Revision: 1.15 $ + * + * @see http://www.libxml.org/, + * http://www.openssl.org/, + * http://www.aleksey.com/xmlsec/ */ #ifdef __cplusplus |