summaryrefslogtreecommitdiffhomepage
path: root/src/core/ngx_inet.h
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2013-02-10 02:56:03 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2013-02-10 02:56:03 +0000
commitdcec6574b8b4ee118bdffbbbf6bf5a555853cb64 (patch)
tree24de0d8fc9c487ea896e79c97c926c606ef7b64c /src/core/ngx_inet.h
parent4f535b103e7621678274201aa1b74ef7a92e0577 (diff)
downloadnginx-dcec6574b8b4ee118bdffbbbf6bf5a555853cb64.tar.gz
nginx-dcec6574b8b4ee118bdffbbbf6bf5a555853cb64.tar.bz2
Merge of r4945, r4984: ngx_inet.[ch] minor fixes.
*) Fixed the NGX_SOCKADDR_STRLEN macro definition. The ngx_sock_ntop() function, when told to print both address and port, prints IPv6 address in square brackets, followed by colon and port. *) Properly initialize "struct in6_addr" with zeroes.
Diffstat (limited to 'src/core/ngx_inet.h')
-rw-r--r--src/core/ngx_inet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_inet.h b/src/core/ngx_inet.h
index c5a3d7677..e30dcb511 100644
--- a/src/core/ngx_inet.h
+++ b/src/core/ngx_inet.h
@@ -30,7 +30,7 @@
#if (NGX_HAVE_UNIX_DOMAIN)
#define NGX_SOCKADDR_STRLEN (sizeof("unix:") - 1 + NGX_UNIX_ADDRSTRLEN)
#else
-#define NGX_SOCKADDR_STRLEN (NGX_INET6_ADDRSTRLEN + sizeof(":65535") - 1)
+#define NGX_SOCKADDR_STRLEN (NGX_INET6_ADDRSTRLEN + sizeof("[]:65535") - 1)
#endif
#if (NGX_HAVE_UNIX_DOMAIN)