mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 09:29:16 +02:00
add a debug for refused connection in DomainGatekeeper
This commit is contained in:
parent
fe591f61cc
commit
c6f1567361
2 changed files with 2 additions and 2 deletions
|
@ -98,6 +98,8 @@ void DomainGatekeeper::processConnectRequestPacket(QSharedPointer<NLPacket> pack
|
|||
// signal that we just connected a node so the DomainServer can get it a list
|
||||
// and broadcast its presence right away
|
||||
emit connectedNode(node);
|
||||
} else {
|
||||
qDebug() << "Refusing connection from node at" << packet->getSenderSockAddr();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
|
||||
#include "PendingAssignedNodeData.h"
|
||||
|
||||
#include <QtCore/QDebug>
|
||||
|
||||
PendingAssignedNodeData::PendingAssignedNodeData(const QUuid& assignmentUUID, const QUuid& walletUUID, const QString& nodeVersion) :
|
||||
_assignmentUUID(assignmentUUID),
|
||||
_walletUUID(walletUUID),
|
||||
|
|
Loading…
Reference in a new issue