comparison src/os/unix/ngx_linux_config.h @ 475:c3c2848fc081 release-0.1.12

nginx-0.1.12-RELEASE import *) Feature: the %request_length log parameter. *) Bugfix: when using the /dev/poll, select and poll on the platforms, where these methods may do the false reports, there may be the long delay when the request was passed via the keep-alive connection. It may be at least on Solaris when using the /dev/poll. *) Bugfix: the send_lowat directive is ignored on Linux because Linux does not support the SO_SNDLOWAT option.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 06 Dec 2004 14:45:08 +0000
parents 31ee1b50354f
children c52408583801
comparison
equal deleted inserted replaced
474:99ad6d3b40ed 475:c3c2848fc081
78 #if defined TCP_DEFER_ACCEPT && !defined NGX_HAVE_DEFERRED_ACCEPT 78 #if defined TCP_DEFER_ACCEPT && !defined NGX_HAVE_DEFERRED_ACCEPT
79 #define NGX_HAVE_DEFERRED_ACCEPT 1 79 #define NGX_HAVE_DEFERRED_ACCEPT 1
80 #endif 80 #endif
81 81
82 82
83 #ifndef NGX_HAVE_SO_SNDLOWAT
84 /* setsockopt(SO_SNDLOWAT) returns ENOPROTOOPT */
85 #define NGX_HAVE_SO_SNDLOWAT 0
86 #endif
87
88
83 #ifndef NGX_HAVE_INHERITED_NONBLOCK 89 #ifndef NGX_HAVE_INHERITED_NONBLOCK
84 #define NGX_HAVE_INHERITED_NONBLOCK 0 90 #define NGX_HAVE_INHERITED_NONBLOCK 0
85 #endif 91 #endif
86 92
87 93