blob: 244f754f11998b32930ad31d2b6f5b060d39aab9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- src/stats/decode_proto.c.orig 2017-03-18 16:11:42 UTC
+++ src/stats/decode_proto.c
@@ -25,6 +25,15 @@
#include "appdata.h"
#include <ctype.h>
#include <string.h>
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_SOCKET_H
+#include <sys/socket.h>
+#endif
+#ifdef HAVE_NETINET_IN_H
+#include <netinet/in.h>
+#endif
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
|