fixing typo in debug message

merge-requests/1/head
roeland jansen 2021-02-04 15:44:28 +00:00
rodzic 215c8863e9
commit 934edbea92
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ udpHandler::udpHandler(QHostAddress ip, int cport, int sport, int aport,QString
udp = new QUdpSocket(this);
udp->bind(); // Bind to random port.
localPort = udp->localPort();
qDebug() << "ControStream bound to local port:" << localPort << " remote port:" << port;
qDebug() << "ControlStream bound to local port:" << localPort << " remote port:" << port;
QUdpSocket::connect(udp, &QUdpSocket::readyRead, this, &udpHandler::DataReceived);
// Convoluted way to find the external IP address, there must be a better way????