/*
- * $Id: IPAddress.cc,v 1.3 2007/12/27 00:48:06 hno Exp $
+ * $Id: IPAddress.cc,v 1.4 2008/02/15 09:45:57 amosjeffries Exp $
*
* DEBUG: section 14 IP Storage and Handling
* AUTHOR: Amos Jeffries
Map6to4( m_SocketAddr.sin6_addr, buf.sin_addr);
} else
{
- debugs(14,1, HERE << "IPAddress::GetSockAddr : Cannot convert non-IPv4 to IPv4.");
+ debugs(14, DBG_CRITICAL, HERE << "IPAddress::GetSockAddr : Cannot convert non-IPv4 to IPv4. from " << *this );
memset(&buf,0xFFFFFFFF,sizeof(struct sockaddr_in));
assert(false);
/*
- * $Id: comm.cc,v 1.445 2008/02/12 22:58:29 rousskov Exp $
+ * $Id: comm.cc,v 1.446 2008/02/15 09:45:57 amosjeffries Exp $
*
* DEBUG: section 5 Socket Functions
* AUTHOR: Harvest Derived
debugs(5, 9, "comm_connect_addr: connecting socket " << sock << " to " << address << " (want family: " << F->sock_family << ")");
+ /* FIXME INET6 : Bug 2222: when sock is an IPv4-only socket IPv6 traffic will crash. */
address.GetAddrInfo(AI, F->sock_family);
/* Establish connection. */