adding back log about mismatching packet type

This commit is contained in:
Andrew Meadows 2014-01-17 11:35:16 -08:00
parent 48796231ef
commit 562b29b293

View file

@ -67,7 +67,7 @@ bool packetVersionMatch(unsigned char* packetHeader) {
if (packetHeader[1] == versionForPacketType(packetHeader[0]) || packetHeader[0] == PACKET_TYPE_STUN_RESPONSE) {
return true;
} else {
//qDebug("There is a packet version mismatch for packet with header %c", packetHeader[0]);
qDebug("There is a packet version mismatch for packet with header %c", packetHeader[0]);
return false;
}
}