BUILD: fix build error on FreeBSD
Marcello Gorlani reported that commit 5e205524ad24003ecc4dbb435066aebe7ed58d95
(BUG: http: re-enable TCP quick-ack upon incomplete HTTP requests) broke build
on FreeBSD.
Moving the include lower fixes the issue. This must be backported to 1.4 too.
diff --git a/src/proto_http.c b/src/proto_http.c
index 034a752..af53dda 100644
--- a/src/proto_http.c
+++ b/src/proto_http.c
@@ -19,12 +19,12 @@
#include <syslog.h>
#include <time.h>
-#include <netinet/tcp.h>
-
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
+#include <netinet/tcp.h>
+
#include <common/appsession.h>
#include <common/base64.h>
#include <common/compat.h>