view src/os/win32/ngx_init.c @ 93:738fe44c70d5

nginx-0.0.1-2003-05-21-17:28:21 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 21 May 2003 13:28:21 +0000
parents 19cc647ecd91
children 7ebc8b7fb816
line wrap: on
line source


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