aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/internal.h
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2007-06-15 14:30:41 +0000
committerNils Durner <durner@gnunet.org>2007-06-15 14:30:41 +0000
commite96a7669c8d2c188db1e0aed50440ddfed70c94f (patch)
tree7669ad1777441a56a8f80c81d0a2157b9ce40fb3 /src/daemon/internal.h
parent74770d3cc13e56db19f47495e57671eaaed6a957 (diff)
downloadlibmicrohttpd-e96a7669c8d2c188db1e0aed50440ddfed70c94f.tar.gz
libmicrohttpd-e96a7669c8d2c188db1e0aed50440ddfed70c94f.zip
builds on Win32
Diffstat (limited to 'src/daemon/internal.h')
-rw-r--r--src/daemon/internal.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index ee5e1f97..2022b77e 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -32,18 +32,22 @@
32 32
33#include <stdio.h> 33#include <stdio.h>
34#include <stdlib.h> 34#include <stdlib.h>
35#include <netdb.h>
36#include <string.h> 35#include <string.h>
37#include <unistd.h> 36#include <unistd.h>
38#include <stdarg.h> 37#include <stdarg.h>
39#include <errno.h> 38#include <errno.h>
40#include <fcntl.h> 39#include <fcntl.h>
41#include <signal.h> 40#include <signal.h>
42#include <pthread.h>
43#include <netinet/in.h>
44 41
45#include "microhttpd.h"
46#include "config.h" 42#include "config.h"
43#include "microhttpd.h"
44
45#ifndef MINGW
46#include <netdb.h>
47#include <netinet/in.h>
48#endif
49
50#include <pthread.h>
47 51
48#define MHD_MAX_BUF_SIZE 2048 52#define MHD_MAX_BUF_SIZE 2048
49 53