comparison src/core/ngx_resolver.h @ 560:daf4847b43ff NGINX_0_8_32

nginx 0.8.32 *) Bugfix: UTF-8 encoding usage in the ngx_http_autoindex_module. Thanks to Maxim Dounin. *) Bugfix: regular expression named captures worked for two names only. Thanks to Maxim Dounin. *) Bugfix: now the "localhost" name is used in the "Host" request header line, if an unix domain socket is defined in the "auth_http" directive. Thanks to Maxim Dounin. *) Bugfix: nginx did nor support chunked transfer encoding for 201 responses. Thanks to Julian Reich. *) Bugfix: if the "expires modified" set date in the past, the a negative number was set in the "Cache-Control" response header line. Thanks to Alex Kapranoff.
author Igor Sysoev <http://sysoev.ru>
date Mon, 11 Jan 2010 00:00:00 +0300
parents c04fa65fe604
children 615b5ea36fc0
comparison
equal deleted inserted replaced
559:6026569dbf64 560:daf4847b43ff
35 typedef struct { 35 typedef struct {
36 ngx_connection_t *connection; 36 ngx_connection_t *connection;
37 struct sockaddr *sockaddr; 37 struct sockaddr *sockaddr;
38 socklen_t socklen; 38 socklen_t socklen;
39 ngx_str_t server; 39 ngx_str_t server;
40 ngx_log_t *log; 40 ngx_log_t log;
41 } ngx_udp_connection_t; 41 } ngx_udp_connection_t;
42 42
43 43
44 typedef struct ngx_resolver_ctx_s ngx_resolver_ctx_t; 44 typedef struct ngx_resolver_ctx_s ngx_resolver_ctx_t;
45 45