--------------------- PatchSet 5153 Date: 2007/08/05 08:56:48 Author: amosjeffries Branch: squid3-ipv6 Tag: (none) Log: Boost debugs output on ACLIP IPA lookup failure. Members: src/ACLIP.cc:1.8.2.34->1.8.2.35 Index: squid3/src/ACLIP.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/ACLIP.cc,v retrieving revision 1.8.2.34 retrieving revision 1.8.2.35 diff -u -r1.8.2.34 -r1.8.2.35 --- squid3/src/ACLIP.cc 4 Aug 2007 10:41:43 -0000 1.8.2.34 +++ squid3/src/ACLIP.cc 5 Aug 2007 08:56:48 -0000 1.8.2.35 @@ -1,5 +1,5 @@ /* - * $Id: ACLIP.cc,v 1.8.2.34 2007/08/04 10:41:43 amosjeffries Exp $ + * $Id: ACLIP.cc,v 1.8.2.35 2007/08/05 08:56:48 amosjeffries Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -313,7 +313,7 @@ int errcode = getaddrinfo(l_addr1,NULL,&hints,&hp); if (hp == NULL) { - debugs(28, 0, "aclIpParseIpData: Bad host/IP: '" << t << "' : " << errcode << " " << gai_strerror(errcode) ); + debugs(28, 0, "aclIpParseIpData: Bad host/IP: '" << l_addr1 << "' in '" << t << "', flags=" << hints.ai_flags << " : (" << errcode << ") " << gai_strerror(errcode) ); self_destruct(); }