/*
- * $Id: htcp.cc,v 1.47 2002/10/21 09:31:55 hno Exp $
+ * $Id: htcp.cc,v 1.48 2003/01/04 01:12:49 hno Exp $
*
* DEBUG: section 31 Hypertext Caching Protocol
* AUTHOR: Duane Wesssels
debug(31, 3) ("htcpHandle: htcpHdr.major = %d\n", (int) htcpHdr.major);
debug(31, 3) ("htcpHandle: htcpHdr.minor = %d\n", (int) htcpHdr.minor);
if (sz != htcpHdr.length) {
- debug(31, 1) ("htcpHandle: sz != htcpHdr.length\n");
+ debug(31, 1) ("htcpHandle: sz/%d != htcpHdr.length/%d from %s:%d\n",
+ sz, htcpHdr.length,
+ inet_ntoa(from->sin_addr), (int) ntohs(from->sin_port));
return;
}
buf += sizeof(htcpHeader);