comparison src/os/unix/ngx_errno.h @ 501:d4ea69372b94 release-0.1.25

nginx-0.1.25-RELEASE import *) Bugfix: nginx did run on Linux parisc. *) Feature: nginx now does not start under FreeBSD if the sysctl kern.ipc.somaxconn value is too big. *) Bugfix: if a request was internally redirected by the ngx_http_index_module module to the ngx_http_proxy_module or ngx_http_fastcgi_module modules, then the index file was not closed after request completion. *) Feature: the "proxy_pass" can be used in location with regular expression. *) Feature: the ngx_http_rewrite_filter_module module supports the condition like "if ($HTTP_USER_AGENT ~ MSIE)". *) Bugfix: nginx started too slow if the large number of addresses and text values were used in the "geo" directive. *) Change: a variable name must be declared as "$name" in the "geo" directive. The previous variant without "$" is still supported, but will be removed soon. *) Feature: the "%{VARIABLE}v" logging parameter. *) Feature: the "set $name value" directive. *) Bugfix: gcc 4.0 compatibility. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
author Igor Sysoev <igor@sysoev.ru>
date Sat, 19 Mar 2005 12:38:37 +0000
parents 2ff194b74f1e
children dadfa78d2270
comparison
equal deleted inserted replaced
500:9a0f304470f5 501:d4ea69372b94
23 #define NGX_EBUSY EBUSY 23 #define NGX_EBUSY EBUSY
24 #define NGX_EEXIST EEXIST 24 #define NGX_EEXIST EEXIST
25 #define NGX_ENOTDIR ENOTDIR 25 #define NGX_ENOTDIR ENOTDIR
26 #define NGX_EINVAL EINVAL 26 #define NGX_EINVAL EINVAL
27 #define NGX_EPIPE EPIPE 27 #define NGX_EPIPE EPIPE
28 #define NGX_EAGAIN EWOULDBLOCK 28 #define NGX_EAGAIN EAGAIN
29 #define NGX_EINPROGRESS EINPROGRESS 29 #define NGX_EINPROGRESS EINPROGRESS
30 #define NGX_EADDRINUSE EADDRINUSE 30 #define NGX_EADDRINUSE EADDRINUSE
31 #define NGX_ECONNABORTED ECONNABORTED 31 #define NGX_ECONNABORTED ECONNABORTED
32 #define NGX_ECONNRESET ECONNRESET 32 #define NGX_ECONNRESET ECONNRESET
33 #define NGX_ENOTCONN ENOTCONN 33 #define NGX_ENOTCONN ENOTCONN
50 50
51 u_char *ngx_strerror_r(int err, u_char *errstr, size_t size); 51 u_char *ngx_strerror_r(int err, u_char *errstr, size_t size);
52 52
53 #else 53 #else
54 54
55 /* Solaris has threads-safe strerror() */ 55 /* Solaris has thread-safe strerror() */
56 56
57 #define ngx_strerror_r(err, errstr, size) \ 57 #define ngx_strerror_r(err, errstr, size) \
58 ngx_cpystrn(errstr, (u_char *) strerror(err), size) 58 ngx_cpystrn(errstr, (u_char *) strerror(err), size)
59 59
60 #endif 60 #endif
61 61
62 62
63 #endif /* _NGX_ERRNO_H_INCLUDED_ */ 63 #endif /* _NGX_ERRNO_H_INCLUDED_ */