add domain IP and packet size debugging

This commit is contained in:
Stephen Birarda 2014-03-25 13:05:58 -07:00
parent f0b87bebc2
commit 08ed708ee6

View file

@ -582,7 +582,8 @@ void NodeList::sendDomainServerCheckIn() {
foreach (NodeType_t nodeTypeOfInterest, _nodeTypesOfInterest) {
packetStream << nodeTypeOfInterest;
}
qDebug() << "sending DS check in size" << domainServerPacket.size() << "to" << _domainInfo.getSockAddr();
writeDatagram(domainServerPacket, _domainInfo.getSockAddr(), _domainInfo.getConnectionSecret());
const int NUM_DOMAIN_SERVER_CHECKINS_PER_STUN_REQUEST = 5;
static unsigned int numDomainCheckins = 0;