view src/os/win32/ngx_socket.c @ 3:34a521b1a148

nginx-0.0.1-2002-08-20-18:48:28 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 20 Aug 2002 14:48:28 +0000
parents ffffe1499bce
children e8cdc2989cee
line wrap: on
line source

#include <ngx_config.h>

#include <ngx_log.h>
#include <ngx_errno.h>
#include <ngx_socket.h>


void ngx_init_sockets(ngx_log_t *log)
{
    WSADATA  wsd;

    if (WSAStartup(MAKEWORD(2,2), &wsd) != 0)
        ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
                      "ngx_init_sockets: WSAStartup failed");

    /* get AcceptEx(), TransmitFile() functions */
}

int ngx_nonblocking(ngx_socket_t s)
{
    unsigned long  nb = 1;

    return ioctlsocket(s, FIONBIO, &nb);
}

int ngx_blocking(ngx_socket_t s)
{
    unsigned long  nb = 0;

    return ioctlsocket(s, FIONBIO, &nb);
}