comparison src/core/ngx_inet.h @ 266:251bcd11a5b8 NGINX_0_5_3

nginx 0.5.3 *) Feature: the ngx_http_perl_module supports the $r->status, $r->log_error, and $r->sleep methods. *) Feature: the $r->variable method supports variables that do not exist in nginx configuration. *) Bugfix: the $r->has_request_body method did not work.
author Igor Sysoev <http://sysoev.ru>
date Wed, 13 Dec 2006 00:00:00 +0300
parents 0effe91f6083
children 10cc350ed8a1
comparison
equal deleted inserted replaced
265:3d4634b3b321 266:251bcd11a5b8
33 typedef struct { 33 typedef struct {
34 ngx_int_t type; 34 ngx_int_t type;
35 35
36 ngx_str_t url; 36 ngx_str_t url;
37 ngx_str_t host; 37 ngx_str_t host;
38 ngx_str_t host_header;
39 ngx_str_t port;
40 ngx_str_t uri; 38 ngx_str_t uri;
41 39
42 in_port_t portn; 40 in_port_t port;
43 in_port_t default_portn; 41 in_port_t default_port;
44 42
45 unsigned listen:1; 43 unsigned listen:1;
46 unsigned uri_part:1; 44 unsigned uri_part:1;
47 unsigned upstream:1;
48 unsigned no_resolve:1; 45 unsigned no_resolve:1;
49 unsigned one_addr:1; 46 unsigned one_addr:1;
50 47
51 unsigned wildcard:1; 48 unsigned wildcard:1;
52 unsigned no_port:1; 49 unsigned no_port:1;
50 unsigned unix_socket:1;
53 51
54 ngx_url_addr_t addr; 52 ngx_url_addr_t addr;
55 53
56 ngx_peer_addr_t *addrs; 54 ngx_peer_addr_t *addrs;
57 ngx_uint_t naddrs; 55 ngx_uint_t naddrs;