mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 06:17:28 +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
|
// signal that we just connected a node so the DomainServer can get it a list
|
||||||
// and broadcast its presence right away
|
// and broadcast its presence right away
|
||||||
emit connectedNode(node);
|
emit connectedNode(node);
|
||||||
|
} else {
|
||||||
|
qDebug() << "Refusing connection from node at" << packet->getSenderSockAddr();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
#include "PendingAssignedNodeData.h"
|
#include "PendingAssignedNodeData.h"
|
||||||
|
|
||||||
#include <QtCore/QDebug>
|
|
||||||
|
|
||||||
PendingAssignedNodeData::PendingAssignedNodeData(const QUuid& assignmentUUID, const QUuid& walletUUID, const QString& nodeVersion) :
|
PendingAssignedNodeData::PendingAssignedNodeData(const QUuid& assignmentUUID, const QUuid& walletUUID, const QString& nodeVersion) :
|
||||||
_assignmentUUID(assignmentUUID),
|
_assignmentUUID(assignmentUUID),
|
||||||
_walletUUID(walletUUID),
|
_walletUUID(walletUUID),
|
||||||
|
|
Loading…
Reference in a new issue