aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_inet.h
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-11-30 11:26:50 +0000
committerRuslan Ermilov <ru@nginx.com>2012-11-30 11:26:50 +0000
commitf707bea0ee63f1e468a0a7070220968245fb4766 (patch)
treef7bcaabef2353ef1cbcca4808fa4dcd2a89bfcdd /src/core/ngx_inet.h
parentb63da701e5b3945198a507f5c604f3c2a6c4cb8b (diff)
downloadnginx-f707bea0ee63f1e468a0a7070220968245fb4766.tar.gz
nginx-f707bea0ee63f1e468a0a7070220968245fb4766.zip
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.
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)