nginx-quic/src/os/win32/ngx_init.c

12 lines
166 B
C
Raw Normal View History

2003-05-19 12:39:14 -04:00
#include <ngx_os_init.h>
int ngx_os_init(ngx_log_t *log)
{
if (ngx_init_sockets(&ngx_log) == NGX_ERROR) {
return NGX_ERROR;
}
return NGX_OK;
}