comparison src/os/unix/ngx_linux_config.h @ 334:42974b9e97b5 NGINX_0_5_37

nginx 0.5.37 *) Bugfix: if sub_filter and SSI were used together, then responses might were transferred incorrectly. *) Bugfix: large SSI inclusions might be truncated. *) Bugfix: worker processes might not catch reconfiguration and log rotation signals. *) Bugfix: nginx could not be built on latest Fedora 9 Linux. Thanks to Roxis. *) Bugfix: a segmentation fault might occur in worker process on Linux, if keepalive was enabled. *) Bugfix: an alert "sendmsg() failed (9: Bad file descriptor)" on some 64-bit platforms while reconfiguration.
author Igor Sysoev <http://sysoev.ru>
date Mon, 07 Jul 2008 00:00:00 +0400
parents c60beecc6ab5
children
comparison
equal deleted inserted replaced
333:30e294abe0ca 334:42974b9e97b5
45 #include <netdb.h> 45 #include <netdb.h>
46 #include <sys/un.h> 46 #include <sys/un.h>
47 47
48 #include <time.h> /* tzset() */ 48 #include <time.h> /* tzset() */
49 #include <malloc.h> /* memalign() */ 49 #include <malloc.h> /* memalign() */
50 #include <limits.h> /* IOV_MAX */
50 #include <sys/ioctl.h> 51 #include <sys/ioctl.h>
51 #include <sys/sysctl.h> 52 #include <sys/sysctl.h>
52 #include <crypt.h> 53 #include <crypt.h>
53 #include <sys/utsname.h> /* uname() */ 54 #include <sys/utsname.h> /* uname() */
54 55