aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/internal.h
diff options
context:
space:
mode:
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