comparison 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
comparison
equal deleted inserted replaced
90:37530da31268 91:637625a2acdb
1
2 #include <ngx_os_init.h>
3
4 int ngx_os_init(ngx_log_t *log)
5 {
6 if (ngx_init_sockets(&ngx_log) == NGX_ERROR) {
7 return NGX_ERROR;
8 }
9
10 return NGX_OK;
11 }