diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2008-12-23 19:35:12 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2008-12-23 19:35:12 +0000 |
| commit | 302cedceb0f6647e3c7578f5210c458e9efc90b4 (patch) | |
| tree | 2b4b8ee78a866e543411e9be5e71cbce16344c8f /src/http/ngx_http_upstream.h | |
| parent | 8eb5ed2e77c871658e5d204865cc5bfd0f457638 (diff) | |
| download | nginx-302cedceb0f6647e3c7578f5210c458e9efc90b4.tar.gz nginx-302cedceb0f6647e3c7578f5210c458e9efc90b4.tar.bz2 | |
variable support for unix sockets in fastcgi_pass and proxy_pass
Diffstat (limited to 'src/http/ngx_http_upstream.h')
| -rw-r--r-- | src/http/ngx_http_upstream.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h index b6f2161d4..3c141276d 100644 --- a/src/http/ngx_http_upstream.h +++ b/src/http/ngx_http_upstream.h @@ -209,8 +209,13 @@ typedef struct { ngx_str_t host; in_port_t port; ngx_uint_t no_port; /* unsigned no_port:1 */ + ngx_uint_t naddrs; in_addr_t *addrs; + + struct sockaddr *sockaddr; + socklen_t socklen; + ngx_resolver_ctx_t *ctx; } ngx_http_upstream_resolved_t; |
