mirror of
https://github.com/nginx/nginx.git
synced 2025-01-23 13:12:59 +08:00
12 lines
166 B
C
12 lines
166 B
C
|
|
||
|
#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;
|
||
|
}
|