better diagnostics and disconnect claims pending channels

in tcpiiu::~tcpiiu
This commit is contained in:
Jeff Hill
2000-09-06 00:33:14 +00:00
parent 6387924a87
commit 87a8230100
25 changed files with 427 additions and 168 deletions

View File

@@ -100,3 +100,16 @@ const char *tcpRecvWatchdog::name () const
return "TCP Receive Watchdog";
}
void tcpRecvWatchdog::show ( unsigned level ) const
{
printf ( "Receive virtual circuit watchdog at %p, period %s\n",
this, this->period );
if ( level > 0u ) {
printf ( "\tresponse pending boolean %u, beacon anomaly boolean %u\n",
this->responsePending, this->beaconAnomaly );
}
if ( level > 1u ) {
printf ( "\techo protocol accepted boolean %u\n",
this->echoProtocolAccepted );
}
}