diff options
Diffstat (limited to 'src/modules/upnp/WanConnectionService.cpp')
| -rw-r--r-- | src/modules/upnp/WanConnectionService.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/upnp/WanConnectionService.cpp b/src/modules/upnp/WanConnectionService.cpp index 9c900f9b6..9073bb89a 100644 --- a/src/modules/upnp/WanConnectionService.cpp +++ b/src/modules/upnp/WanConnectionService.cpp @@ -113,7 +113,7 @@ const KviPointerList<PortMapping>& WanConnectionService::getPortMappings() const // The control point received a response to callAction() void WanConnectionService::gotActionResponse(const QString &responseType, const QMap<QString,QString> &resultValues) { - qDebug() << "UPnP::WanConnectionService: Parsing action response:" + qDebug() << "UPnP::WanConnectionService: parsing action response:" << " type='" << responseType << "'." << endl; // Check the message type @@ -149,17 +149,17 @@ void WanConnectionService::gotActionResponse(const QString &responseType, const // Register the mapping m_lPortMappings.append(map); - qDebug() << "UPnP::WanConnectionService - Got mapping: " << map->protocol << " " << map->remoteHost << ":" << map->externalPort + qDebug() << "UPnP::WanConnectionService - Received mapping: " << map->protocol << " " << map->remoteHost << ":" << map->externalPort << " to " << map->internalClient << ":" << map->internalPort << " max " << map->leaseDuration << "s '" << map->description << "' " << (map->enabled ? "enabled" : "disabled") << endl; } else if(responseType == "AddPortMappingResponse") { - qDebug() << "UPnP::WanConnectionService - Got mapping enabled" << endl; + qDebug() << "UPnP::WanConnectionService - Received mapping enabled" << endl; } else if(responseType == "DeletePortMappingResponse") { - qDebug() << "UPnP::WanConnectionService - Got mapping disabled" << endl; + qDebug() << "UPnP::WanConnectionService - Received mapping disabled" << endl; } else { |
