From 213f71347ff5d2618eebbe30fcb13df80bca80bd Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sun, 12 Mar 2006 11:08:33 +0000 Subject: [PATCH] print out some debug information when connection is done --- src/channel.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/channel.cpp b/src/channel.cpp index 1a0dae1d..d16b18e1 100755 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -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(); }