From 65985c4e6527c82a75367d9c5418b009dfbc6379 Mon Sep 17 00:00:00 2001 From: m0gg Date: Sun, 26 Nov 2006 20:13:05 +0000 Subject: soap.udp transport added (alpha) --- libcsoap/soap-addressing.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'libcsoap/soap-addressing.c') diff --git a/libcsoap/soap-addressing.c b/libcsoap/soap-addressing.c index 9e89f49..2069bd7 100644 --- a/libcsoap/soap-addressing.c +++ b/libcsoap/soap-addressing.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: soap-addressing.c,v 1.6 2006/11/25 17:03:20 m0gg Exp $ +* $Id: soap-addressing.c,v 1.7 2006/11/26 20:13:05 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2006 Heiko Ronsdorf @@ -41,6 +41,10 @@ #include #endif +#ifdef HAVE_STRING_H +#include +#endif + #ifdef HAVE_ERRNO_H #include #endif @@ -59,6 +63,7 @@ #include "soap-xml.h" #include "soap-fault.h" #include "soap-env.h" +#include "soap-server.h" #include "soap-addressing.h" static const xmlChar * @@ -189,7 +194,7 @@ _soap_addressing_set_content_uri(xmlNodePtr node, xmlURI *uri) xmlChar *buf; if (uri == NULL) - return; + return NULL; buf = xmlSaveUri(uri); xmlNodeSetContent(node, buf); -- cgit v1.1-32-gdbae