summaryrefslogtreecommitdiffhomepage
path: root/src/os/win32/ngx_init.c
blob: cc4f25e629ce2a175d06c927986cccbc77f504be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

#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;
}