mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:22:07 +02:00
only a single log line per client version mismatch
This commit is contained in:
parent
278fe93f2b
commit
1da8fe5838
1 changed files with 8 additions and 1 deletions
|
@ -62,7 +62,14 @@ bool IceServer::packetVersionMatch(const udt::Packet& packet) {
|
|||
if (headerVersion == versionForPacketType(headerType)) {
|
||||
return true;
|
||||
} else {
|
||||
qDebug() << "Packet version mismatch for packet" << headerType << " from" << packet.getSenderSockAddr();
|
||||
static QSet<HifiSockAddr> mismatchedClients;
|
||||
|
||||
// only output a version mismatch once per ice-server run
|
||||
if (!mismatchedClients.contains(packet.getSenderSockAddr())) {
|
||||
mismatchedClients.insert(packet.getSenderSockAddr());
|
||||
|
||||
qDebug() << "Packet version mismatch for packet" << headerType << " from" << packet.getSenderSockAddr();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue