diff src/core/nginx.c @ 59:e8cdc2989cee

nginx-0.0.1-2003-02-06-20:21:13 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 06 Feb 2003 17:21:13 +0000
parents 6b13b1cadabe
children 59229033ae93
line wrap: on
line diff
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -27,6 +27,7 @@ static void ngx_open_listening_sockets(n
 
 /* STUB */
 int ngx_max_conn = 512;
+u_int  ngx_sendfile_flags;
 
 ngx_server_t  ngx_server;
 /* */
@@ -53,12 +54,17 @@ int main(int argc, char *const *argv)
     /* */
 
 #if (WIN32)
-    ngx_init_sockets(&ngx_log);
+
+    if (ngx_init_sockets(&ngx_log) == NGX_ERROR) {
+        exit(1);
+    }
+
 #else
+
     ngx_set_signals(&ngx_log);
+
 #endif
 
-
     ngx_init_array(ngx_listening_sockets, ngx_pool, 10, sizeof(ngx_listen_t),
                    1);