mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 21:43:13 +02:00
Merge pull request #12967 from SimonWalton-HiFi/hmac-shortid-merge-fix
Fix for null sourceNode use
This commit is contained in:
commit
91197cadcf
2 changed files with 2 additions and 2 deletions
|
@ -617,7 +617,7 @@ bool DomainServer::isPacketVerified(const udt::Packet& packet) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
HIFI_FDEBUG("Packet of type" << headerType
|
HIFI_FDEBUG("Packet of type" << headerType
|
||||||
<< "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceNode->getUUID()));
|
<< "received from unknown node with Local ID" << localSourceID);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -358,7 +358,7 @@ bool LimitedNodeList::packetSourceAndHashMatchAndTrackBandwidth(const udt::Packe
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
HIFI_FCDEBUG(networking(),
|
HIFI_FCDEBUG(networking(),
|
||||||
"Packet of type" << headerType << "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceID));
|
"Packet of type" << headerType << "received from unknown node with Local ID" << sourceLocalID);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue