[nginx] svn commit: r4945 - trunk/src/core
ru at nginx.com
ru at nginx.com
Fri Nov 30 11:26:50 UTC 2012
Author: ru
Date: 2012-11-30 11:26:50 +0000 (Fri, 30 Nov 2012)
New Revision: 4945
URL: http://trac.nginx.org/nginx/changeset/4945/nginx
Log:
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.
Modified:
trunk/src/core/ngx_inet.h
Modified: trunk/src/core/ngx_inet.h
===================================================================
--- trunk/src/core/ngx_inet.h 2012-11-29 23:15:41 UTC (rev 4944)
+++ trunk/src/core/ngx_inet.h 2012-11-30 11:26:50 UTC (rev 4945)
@@ -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)
More information about the nginx-devel
mailing list