summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/src/sys-socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/src/sys-socket.h')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/src/sys-socket.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/src/sys-socket.h b/data/lighttpd/lighttpd-1.4.53/src/sys-socket.h
new file mode 100644
index 000000000..7851656be
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/src/sys-socket.h
@@ -0,0 +1,45 @@
+#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
+
+#else
+
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netinet/tcp.h>
+#ifdef HAVE_SYS_UN_H
+#include <sys/un.h>
+#endif
+
+#endif
+
+
+#ifndef INET_ADDRSTRLEN
+#define INET_ADDRSTRLEN 16
+#endif
+#ifndef INET6_ADDRSTRLEN
+#define INET6_ADDRSTRLEN 46
+#endif
+#ifndef UNIX_PATH_MAX
+#define UNIX_PATH_MAX 108
+#endif
+
+/* for solaris 2.5 and NetBSD 1.3.x */
+#ifndef HAVE_SOCKLEN_T
+typedef int socklen_t;
+#endif
+
+#ifndef SHUT_WR
+#define SHUT_WR 1
+#endif
+
+#endif