]> git.kaiwu.me - nginx.git/commitdiff
Fixed the NGX_SOCKADDR_STRLEN macro definition.
authorRuslan Ermilov <ru@nginx.com>
Fri, 30 Nov 2012 11:26:50 +0000 (11:26 +0000)
committerRuslan Ermilov <ru@nginx.com>
Fri, 30 Nov 2012 11:26:50 +0000 (11:26 +0000)
The ngx_sock_ntop() function, when told to print both address and port,
prints IPv6 address in square brackets, followed by colon and port.

src/core/ngx_inet.h

index c5a3d7677b14b22fa14dc5a3261178686dfd82f5..e30dcb511687659d99de11a76ec4879ee0e1f25b 100644 (file)
@@ -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)