Merge pull request #96 from mfleisz/master

Added missing include for sockaddr_in in tcp.c
This commit is contained in:
Otavio Salvador 2011-09-12 07:13:54 -07:00
commit 82b5580d32

View File

@ -31,6 +31,7 @@
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#else
#define close(_fd) closesocket(_fd)
#endif