aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp/WanConnectionService.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-12-09 11:58:53 +0000
committerGravatar un1versal2015-12-19 02:40:22 +0000
commit7d4516afc4cd194f9224dcd5e07e0f234c162fdf (patch)
treea1a165c897339fcbd35a27108fe16c999a3041e2 /src/modules/upnp/WanConnectionService.cpp
parentMerge pull request #1776 from TheReign/issue_1754_2 (diff)
downloadKVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.gz
KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.bz2
KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.zip
src/modules typos: capitalize, formatting, consistency and syntax fixes
Diffstat (limited to 'src/modules/upnp/WanConnectionService.cpp')
-rw-r--r--src/modules/upnp/WanConnectionService.cpp8
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
{