summaryrefslogtreecommitdiffhomepage
path: root/src/os/win32/ngx_init.c
blob: 8c3511fe730f63589f24dc449b3dc2f1d7a33ba0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

#include <ngx_config.h>
#include <ngx_core.h>


int  ngx_max_sockets;


ngx_os_io_t ngx_os_io = {
#if 0
    ngx_unix_recv,
    NULL,
    NULL,
    ngx_freebsd_write_chain
#else
    NULL,
    NULL,
    NULL,
    NULL
#endif
};


int ngx_os_init(ngx_log_t *log)
{
    if (ngx_init_sockets(log) == NGX_ERROR) {
        return NGX_ERROR;
    }

    return NGX_OK;
}