/* * Copyright (C) Igor Sysoev */#include <ngx_config.h>#include <ngx_core.h>intngx_nonblocking(ngx_socket_t s){unsigned long nb =1;returnioctlsocket(s, FIONBIO, &nb);}intngx_blocking(ngx_socket_t s){unsigned long nb =0;returnioctlsocket(s, FIONBIO, &nb);}