PR 54848 [Bernhard Schmidt <berni birkenwald de>]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1519556 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) mod_status, mod_echo: Fix the display of client addresses.
+ They were truncated to 31 characters which is not enough for IPv6 addresses.
+ PR 54848 [Bernhard Schmidt <berni birkenwald de>]
+
*) mod_lua: If the first yield() of a LuaOutputFilter returns a string, it should
be prefixed to the response as documented. [Eric Covener]
#ifdef HAVE_TIMES
struct tms times;
#endif
- char client[32]; /* Keep 'em small... */
+ char client[40]; /* Keep 'em small... but large enough to hold an IPv6 address */
char request[64]; /* We just want an idea... */
char vhost[32]; /* What virtual host is being accessed? */
};