/*
- * $Id: forward.cc,v 1.161 2007/04/28 22:26:37 hno Exp $
+ * $Id: forward.cc,v 1.162 2007/04/29 17:35:52 hno Exp $
*
* DEBUG: section 17 Request Forwarding
* AUTHOR: Duane Wessels
if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp, sizeof(itp)) == -1) {
debugs(20, 1, "tproxy ip=" << inet_ntoa(itp.v.addr.faddr) <<
- ",0x" << hex << itp.v.addr.faddr.s_addr << dec <<
+ ",0x" << std::hex << itp.v.addr.faddr.s_addr << std::dec <<
",port=" << itp.v.addr.fport << " ERROR ASSIGN");
request->flags.tproxy = 0;
itp.v.flags = ITP_CONNECT;
if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp, sizeof(itp)) == -1) {
- debugs(20, 1, "tproxy ip=" << hex <<
- itp.v.addr.faddr.s_addr << dec << ",port=" <<
+ debugs(20, 1, "tproxy ip=" << std::hex <<
+ itp.v.addr.faddr.s_addr << std::dec << ",port=" <<
itp.v.addr.fport << " ERROR CONNECT");
request->flags.tproxy = 0;
/*
- * $Id: icmp.cc,v 1.91 2007/04/28 22:26:37 hno Exp $
+ * $Id: icmp.cc,v 1.92 2007/04/29 17:35:52 hno Exp $
*
* DEBUG: section 37 ICMP Routines
* AUTHOR: Duane Wessels
#ifdef _SQUID_MSWIN_
- debugs(37, 4, "Pinger handle: 0x" << hex << (unsigned)hIpc << dec << ", PID: " << pid);
+ debugs(37, 4, "Pinger handle: 0x" << std::hex << (unsigned)hIpc << std::dec << ", PID: " << pid);
#endif
#endif
/*
- * $Id: unlinkd.cc,v 1.62 2007/04/28 22:26:38 hno Exp $
+ * $Id: unlinkd.cc,v 1.63 2007/04/29 17:35:52 hno Exp $
*
* DEBUG: section 2 Unlink Daemon
* AUTHOR: Duane Wessels
#ifdef _SQUID_MSWIN_
- debugs(2, 4, "Unlinkd handle: 0x" << hex << (unsigned)hIpc << dec << ", PID: " << pid);
+ debugs(2, 4, "Unlinkd handle: 0x" << std::hex << (unsigned)hIpc << std::dec << ", PID: " << pid);
#endif