> -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled) > # testing : connection notes > # expected: 127.0.0.1 > # received: 127.0.0.7 > not ok 1
this looks like it may be an IPv6 issue that's perhaps outside our control... the 'expected' part of this test is deduced by Apache-Test using straight-up perl. $ perl -MSocket -e 'print Socket::inet_ntoa((gethostbyname("localhost"))[-1])' the 'received' part uses the value of $c->remote_ip, which is set in the connection record by httpd (not mod_perl) using the APR abstraction layer. I don't have a clue about IPv6 or how it works, but I suspect the issue is the difference between perl's and apr's interpretation of localhost on your machine. maybe someone else has a clue. --Geoff