view src/os/win32/ngx_init.c @ 91:637625a2acdb

nginx-0.0.1-2003-05-19-20:39:14 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 19 May 2003 16:39:14 +0000
parents
children 19cc647ecd91
line wrap: on
line source


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