print out some debug information when connection is done

This commit is contained in:
Volker Fischer 2006-03-12 11:08:33 +00:00
parent 46f1442ec3
commit 213f71347f

View File

@ -400,6 +400,11 @@ for ( int i = 0; i < iCurNetwInBlSiFact * MIN_BLOCK_SIZE_SAMPLES; i++ ) {
// inform other objects that new connection was established
if ( bNewConnection )
{
// TEST debug output
CHostAddress address ( GetAddress() );
qDebug ( "new connection with IP %s\n", address.InetAddr.toString().latin1() );
emit NewConnection();
}