lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
545 B
30 lines
545 B
#ifndef WIN32_SOCKET_H |
|
#define WIN32_SOCKET_H |
|
#include "first.h" |
|
|
|
#ifdef __WIN32 |
|
|
|
#include <winsock2.h> |
|
|
|
#define ECONNRESET WSAECONNRESET |
|
#define EINPROGRESS WSAEINPROGRESS |
|
#define EALREADY WSAEALREADY |
|
#define ECONNABORTED WSAECONNABORTED |
|
#define ioctl ioctlsocket |
|
#else |
|
#include <sys/socket.h> |
|
#include <sys/ioctl.h> |
|
#include <netinet/in.h> |
|
#include <netinet/tcp.h> |
|
#include <sys/un.h> |
|
#include <arpa/inet.h> |
|
|
|
#include <netdb.h> |
|
|
|
#ifdef HAVE_SYS_FILIO_H |
|
#include <sys/filio.h> /* FIONREAD (for illumos (OpenIndiana)) */ |
|
#endif |
|
|
|
#endif |
|
|
|
#endif
|
|
|