[BUILD] types/proxy.h: reorder a few includes.

OpenBSD is very sensible on the order of includes :
sys/types.h, sys/socket.h, netinet/in.h and arpa/inet.h must be
included in this exact order.
This commit is contained in:
Willy Tarreau 2006-10-15 23:18:47 +02:00
parent 1001b949ee
commit 7d67768e27
1 changed files with 2 additions and 1 deletions

View File

@ -22,9 +22,10 @@
#ifndef _TYPES_PROXY_H
#define _TYPES_PROXY_H
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <common/appsession.h>
#include <common/chtbl.h>