print out some debug information when connection is done
This commit is contained in:
parent
46f1442ec3
commit
213f71347f
1 changed files with 5 additions and 0 deletions
|
@ -400,6 +400,11 @@ for ( int i = 0; i < iCurNetwInBlSiFact * MIN_BLOCK_SIZE_SAMPLES; i++ ) {
|
||||||
// inform other objects that new connection was established
|
// inform other objects that new connection was established
|
||||||
if ( bNewConnection )
|
if ( bNewConnection )
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// TEST debug output
|
||||||
|
CHostAddress address ( GetAddress() );
|
||||||
|
qDebug ( "new connection with IP %s\n", address.InetAddr.toString().latin1() );
|
||||||
|
|
||||||
emit NewConnection();
|
emit NewConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue