/*
- * $Id: wccp.cc,v 1.43 2007/04/30 16:56:09 wessels Exp $
+ * $Id: wccp.cc,v 1.44 2007/08/08 14:47:41 rousskov Exp $
*
* DEBUG: section 80 WCCP Support
* AUTHOR: Glenn Chisholm
debugs(80, 5, "wccpConnectionOpen: Called");
if (Config.Wccp.router.s_addr == any_addr.s_addr) {
- debugs(1, 1, "WCCP Disabled.");
+ debugs(80, 2, "WCCPv1 disabled.");
return;
}
NULL,
0);
- debugs(1, 1, "Accepting WCCP messages on port " << port << ", FD " << theWccpConnection << ".");
+ debugs(80, 1, "Accepting WCCPv1 messages on port " << port << ", FD " << theWccpConnection << ".");
router_len = sizeof(router);
wccpConnectionClose(void)
{
if (theWccpConnection > -1) {
- debugs(80, 1, "FD " << theWccpConnection << " Closing WCCP socket");
+ debugs(80, 1, "FD " << theWccpConnection << " Closing WCCPv1 socket");
comm_close(theWccpConnection);
theWccpConnection = -1;
}
/*
- * $Id: wccp2.cc,v 1.16 2007/04/30 16:56:09 wessels Exp $
+ * $Id: wccp2.cc,v 1.17 2007/08/08 14:47:41 rousskov Exp $
*
* DEBUG: section 80 WCCP Support
* AUTHOR: Steven Wilton
}
if (theWccp2Connection > -1) {
- debugs(80, 1, "FD " << theWccp2Connection << " Closing WCCP socket");
+ debugs(80, 1, "FD " << theWccp2Connection << " Closing WCCPv2 socket");
comm_close(theWccp2Connection);
theWccp2Connection = -1;
}