comparison src/http/ngx_http_upstream.h @ 434:49a0eb7ce20c NGINX_0_7_29

nginx 0.7.29 *) Bugfix: the "fastcgi_pass" and "proxy_pass" directives did not support variables if unix domain sockets were used. *) Bugfixes in subrequest processing; the bugs had appeared in 0.7.25. *) Bugfix: a "100 Continue" response was issued for HTTP/1.0 requests; Thanks to Maxim Dounin. *) Bugfix: in memory allocation in the ngx_http_gzip_filter_module on Cygwin.
author Igor Sysoev <http://sysoev.ru>
date Wed, 24 Dec 2008 00:00:00 +0300
parents dac47e9ef0d5
children c8cfb6c462ef
comparison
equal deleted inserted replaced
433:18f6c20ac73a 434:49a0eb7ce20c
207 207
208 typedef struct { 208 typedef struct {
209 ngx_str_t host; 209 ngx_str_t host;
210 in_port_t port; 210 in_port_t port;
211 ngx_uint_t no_port; /* unsigned no_port:1 */ 211 ngx_uint_t no_port; /* unsigned no_port:1 */
212
212 ngx_uint_t naddrs; 213 ngx_uint_t naddrs;
213 in_addr_t *addrs; 214 in_addr_t *addrs;
215
216 struct sockaddr *sockaddr;
217 socklen_t socklen;
218
214 ngx_resolver_ctx_t *ctx; 219 ngx_resolver_ctx_t *ctx;
215 } ngx_http_upstream_resolved_t; 220 } ngx_http_upstream_resolved_t;
216 221
217 222
218 typedef void (*ngx_http_upstream_handler_pt)(ngx_http_request_t *r, 223 typedef void (*ngx_http_upstream_handler_pt)(ngx_http_request_t *r,