BUILD: include sys/socket.h to fix build failure on FreeBSD

Joris Dedieu reported that include/common/standard.h needs this.
This commit is contained in:
Willy Tarreau 2012-09-04 14:18:33 +02:00
parent 18b2059a75
commit d50265aa0e

View File

@ -26,6 +26,7 @@
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <common/config.h>