diff src/os/win32/ngx_socket.h @ 186:c1f3a3c7c5db

nginx-0.0.1-2003-11-17-00:49:42 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 16 Nov 2003 21:49:42 +0000
parents 7db96f59bc29
children 30310107dbc9
line wrap: on
line diff
--- a/src/os/win32/ngx_socket.h
+++ b/src/os/win32/ngx_socket.h
@@ -13,8 +13,12 @@ typedef SOCKET  ngx_socket_t;
 typedef int     socklen_t;
 
 
+#define ngx_socket(af, type, proto, flags)   socket(af, type, proto)
+
+#if 0
 #define ngx_socket(af, type, proto, flags)                                    \
             WSASocket(af, type, proto, NULL, 0, flags)
+#endif
 
 #define ngx_socket_n        "WSASocket()"
 
@@ -36,7 +40,7 @@ extern LPFN_GETACCEPTEXSOCKADDRS  getacc
 extern LPFN_TRANSMITFILE          transmitfile;
 
 
-ngx_inline int ngx_tcp_push(s) {
+static ngx_inline int ngx_tcp_push(ngx_socket_t s) {
      return 0;
 }