mirror of
https://github.com/nginx/nginx.git
synced 2024-12-04 05:38:59 +08:00
Core: make ngx_connection_local_sockaddr() always assign address.
Previously, this function checked for connection local address existence and returned error if it was missing. Now a new address is assigned in this case making it possible to call this function not only for accepted connections.
This commit is contained in:
parent
7f3f7fec77
commit
6337c1d185
@ -1073,17 +1073,16 @@ ngx_connection_local_sockaddr(ngx_connection_t *c, ngx_str_t *s,
|
||||
struct sockaddr_in6 *sin6;
|
||||
#endif
|
||||
|
||||
if (c->local_socklen == 0) {
|
||||
return NGX_ERROR;
|
||||
}
|
||||
addr = 0;
|
||||
|
||||
if (c->local_socklen) {
|
||||
switch (c->local_sockaddr->sa_family) {
|
||||
|
||||
#if (NGX_HAVE_INET6)
|
||||
case AF_INET6:
|
||||
sin6 = (struct sockaddr_in6 *) c->local_sockaddr;
|
||||
|
||||
for (addr = 0, i = 0; addr == 0 && i < 16; i++) {
|
||||
for (i = 0; addr == 0 && i < 16; i++) {
|
||||
addr |= sin6->sin6_addr.s6_addr[i];
|
||||
}
|
||||
|
||||
@ -1101,6 +1100,7 @@ ngx_connection_local_sockaddr(ngx_connection_t *c, ngx_str_t *s,
|
||||
addr = sin->sin_addr.s_addr;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (addr == 0) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user