#ifndef WIN32_SOCKET_H #define WIN32_SOCKET_H #include "first.h" #ifdef __WIN32 #include #define ECONNRESET WSAECONNRESET #define EINPROGRESS WSAEINPROGRESS #define EALREADY WSAEALREADY #define ECONNABORTED WSAECONNABORTED #define ioctl ioctlsocket #define hstrerror(x) "" #else #include #include #include #include #include #include #include #ifdef HAVE_SYS_FILIO_H #include /* FIONREAD (for illumos (OpenIndiana)) */ #endif #endif #endif