aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp/SsdpConnection.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/SsdpConnection.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/SsdpConnection.cpp')
-rw-r--r--src/modules/upnp/SsdpConnection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/upnp/SsdpConnection.cpp b/src/modules/upnp/SsdpConnection.cpp
index d4fdaf717..7440d10d1 100644
--- a/src/modules/upnp/SsdpConnection.cpp
+++ b/src/modules/upnp/SsdpConnection.cpp
@@ -118,7 +118,7 @@ void SsdpConnection::slotDataReceived()
// Send a broadcast to detect all devices
void SsdpConnection::queryDevices(int bindPort)
{
- qDebug() << "UPnP::SsdpConnection: Sending broadcast packet." << endl;
+ qDebug() << "UPnP::SsdpConnection: sending broadcast packet." << endl;
// Send a packet to a broadcast address
QHostAddress address("239.255.255.250");
@@ -134,7 +134,7 @@ void SsdpConnection::queryDevices(int bindPort)
bool success = m_pSocket->bind(bindPort);
if(! success)
{
- qDebug() << "UPnP::SsdpConnection: Failed to bind to port " << bindPort << "." << endl;
+ qDebug() << "UPnP::SsdpConnection: failed to bind to port " << bindPort << "." << endl;
}
// Send the data
@@ -143,7 +143,7 @@ void SsdpConnection::queryDevices(int bindPort)
if(bytesWritten == -1)
{
- qDebug() << "UPnP::SsdpConnection: Failed to send the UPnP broadcast packet." << endl;
+ qDebug() << "UPnP::SsdpConnection: failed to send the UPnP broadcast packet." << endl;
}
}