mirror of
https://github.com/nginx/nginx.git
synced 2025-01-19 01:42:58 +08:00
Upstream: removed ngx_http_upstream_srv_conf_t.default_port.
This is an API change.
This commit is contained in:
parent
663984fe2f
commit
d970e099c6
@ -5763,7 +5763,6 @@ ngx_http_upstream_add(ngx_conf_t *cf, ngx_url_t *u, ngx_uint_t flags)
|
||||
if (flags & NGX_HTTP_UPSTREAM_CREATE) {
|
||||
uscfp[i]->flags = flags;
|
||||
uscfp[i]->port = 0;
|
||||
uscfp[i]->default_port = 0;
|
||||
}
|
||||
|
||||
return uscfp[i];
|
||||
@ -5779,7 +5778,6 @@ ngx_http_upstream_add(ngx_conf_t *cf, ngx_url_t *u, ngx_uint_t flags)
|
||||
uscf->file_name = cf->conf_file->file.name.data;
|
||||
uscf->line = cf->conf_file->line;
|
||||
uscf->port = u->port;
|
||||
uscf->default_port = u->default_port;
|
||||
uscf->no_port = u->no_port;
|
||||
|
||||
if (u->naddrs == 1 && (u->port || u->family == AF_UNIX)) {
|
||||
|
@ -128,7 +128,6 @@ struct ngx_http_upstream_srv_conf_s {
|
||||
u_char *file_name;
|
||||
ngx_uint_t line;
|
||||
in_port_t port;
|
||||
in_port_t default_port;
|
||||
ngx_uint_t no_port; /* unsigned no_port:1 */
|
||||
|
||||
#if (NGX_HTTP_UPSTREAM_ZONE)
|
||||
|
Loading…
Reference in New Issue
Block a user