Fixed compilation of sample/le-proxy.c on win32

This commit is contained in:
Trond Norbye 2010-08-01 21:39:48 +02:00
parent 42a8c71112
commit 13b912e4ac

View File

@ -11,8 +11,13 @@
#include <string.h>
#include <errno.h>
#ifdef WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#endif
#include <event2/bufferevent_ssl.h>
#include <event2/bufferevent.h>