BUILD: fix build error on FreeBSD

Marcello Gorlani reported that commit 5e205524ad
(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.
This commit is contained in:
Willy Tarreau 2012-01-23 15:35:52 +01:00
parent 615674cdec
commit b05405a3a8

View File

@ -19,12 +19,12 @@
#include <syslog.h> #include <syslog.h>
#include <time.h> #include <time.h>
#include <netinet/tcp.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/types.h> #include <sys/types.h>
#include <netinet/tcp.h>
#include <common/appsession.h> #include <common/appsession.h>
#include <common/base64.h> #include <common/base64.h>
#include <common/compat.h> #include <common/compat.h>