Remove debug messages
This commit is contained in:
parent
ebbf43f760
commit
b67761a442
1 changed files with 0 additions and 2 deletions
|
@ -34,7 +34,6 @@ Server::Server(QObject * parent)
|
|||
}
|
||||
|
||||
void Server::incomingConnection(qintptr socketDescriptor) {
|
||||
qDebug() << "incomingConnection";
|
||||
QSslSocket *serverSocket = new QSslSocket(parent());
|
||||
if (serverSocket->setSocketDescriptor(socketDescriptor)) {
|
||||
pendingConnections.append(serverSocket);
|
||||
|
@ -46,7 +45,6 @@ void Server::incomingConnection(qintptr socketDescriptor) {
|
|||
}
|
||||
|
||||
QSslSocket* Server::nextPendingConnection() {
|
||||
qDebug() << "nextPendingConnection (pending:" << pendingConnections.count() << ")";
|
||||
if (pendingConnections.isEmpty()) {
|
||||
return Q_NULLPTR;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue