summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-client.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcsoap/soap-client.c')
-rw-r--r--libcsoap/soap-client.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/libcsoap/soap-client.c b/libcsoap/soap-client.c
index 67b7681..3513d36 100644
--- a/libcsoap/soap-client.c
+++ b/libcsoap/soap-client.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-client.c,v 1.27 2006/07/09 16:24:19 snowdrop Exp $
+* $Id: soap-client.c,v 1.28 2006/11/19 09:40:14 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -25,6 +25,10 @@
#include <config.h>
#endif
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
#ifdef HAVE_STRING_H
#include <string.h>
#endif
@@ -33,8 +37,17 @@
#include <stdio.h>
#endif
-#include <nanohttp/nanohttp-logging.h>
+#ifdef HAVE_NETINET_IN_H
+#include <netinet/in.h>
+#endif
+
+#include <nanohttp/nanohttp-common.h>
+#include <nanohttp/nanohttp-socket.h>
+#include <nanohttp/nanohttp-stream.h>
+#include <nanohttp/nanohttp-request.h>
+#include <nanohttp/nanohttp-response.h>
#include <nanohttp/nanohttp-client.h>
+#include <nanohttp/nanohttp-logging.h>
#include "soap-client.h"