Sign in
nginx
/
nginx
/
6253ca1b62c24bbac8c380d4ae64353b671ad7ef
/
.
/
src
/
os
/
win32
/
ngx_init.c
blob: 4f356a1c2d47b2eadfc39e0564e52405e6ea5039 [
file
]
#include
<ngx_config.h>
#include
<ngx_core.h>
int
ngx_max_sockets
;
ngx_os_io_t
ngx_os_io
=
{
ngx_wsarecv
,
NULL
,
NULL
,
NULL
};
int
ngx_os_init
(
ngx_log_t
*
log
)
{
if
(
ngx_init_sockets
(
log
)
==
NGX_ERROR
)
{
return
NGX_ERROR
;
}
return
NGX_OK
;
}