comparison src/os/unix/ngx_socket.c @ 194:003bd800ec2a NGINX_0_3_44

nginx 0.3.44 *) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
author Igor Sysoev <http://sysoev.ru>
date Thu, 04 May 2006 00:00:00 +0400
parents 408f195b3482
children c982febb7588
comparison
equal deleted inserted replaced
193:2a1394604ae9 194:003bd800ec2a
8 #include <ngx_core.h> 8 #include <ngx_core.h>
9 9
10 10
11 /* 11 /*
12 * ioctl(FIONBIO) sets a blocking mode with the single syscall 12 * ioctl(FIONBIO) sets a blocking mode with the single syscall
13 * while fcntl(F_SETFL, ~O_NONBLOCK) needs to learn before 13 * while fcntl(F_SETFL, !O_NONBLOCK) needs to learn before
14 * the previous state using fcntl(F_GETFL). 14 * the previous state using fcntl(F_GETFL).
15 * 15 *
16 * ioctl() and fcntl() are syscalls at least in FreeBSD 2.x, Linux 2.2 16 * ioctl() and fcntl() are syscalls at least in FreeBSD 2.x, Linux 2.2
17 * and Solaris 7. 17 * and Solaris 7.
18 * 18 *