diff --git a/src/libtomahawk/network/Servent.cpp b/src/libtomahawk/network/Servent.cpp index d4bc6cdc7..63d701a5f 100644 --- a/src/libtomahawk/network/Servent.cpp +++ b/src/libtomahawk/network/Servent.cpp @@ -767,20 +767,26 @@ Servent::printCurrentTransfers() bool Servent::isIPWhitelisted( QHostAddress ip ) { + tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Performing checks against ip" << ip.toString(); typedef QPair< QHostAddress, int > range; QList< range > subnetEntries; QList< QNetworkInterface > networkInterfaces = QNetworkInterface::allInterfaces(); foreach( QNetworkInterface interface, networkInterfaces ) { + tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Checking interface" << interface.humanReadableName(); QList< QNetworkAddressEntry > addressEntries = interface.addressEntries(); foreach( QNetworkAddressEntry addressEntry, addressEntries ) { + tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Checking address entry with ip" << addressEntry.ip().toString() << "and prefix length" << addressEntry.prefixLength(); if ( ip.isInSubnet( addressEntry.ip(), addressEntry.prefixLength() ) ) + { + tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "success"; return true; + } } } - + tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "failure"; return false; }