mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 09:08:37 +02:00
Merge branch 'atp' of https://github.com/birarda/hifi into protocol
This commit is contained in:
commit
b677f8de28
2 changed files with 2 additions and 3 deletions
|
@ -160,6 +160,7 @@ void NodeList::timePingReply(QSharedPointer<NLPacket> packet, const SharedNodePo
|
||||||
}
|
}
|
||||||
|
|
||||||
void NodeList::processPingPacket(QSharedPointer<NLPacket> packet, SharedNodePointer sendingNode) {
|
void NodeList::processPingPacket(QSharedPointer<NLPacket> packet, SharedNodePointer sendingNode) {
|
||||||
|
|
||||||
// send back a reply
|
// send back a reply
|
||||||
auto replyPacket = constructPingReplyPacket(*packet);
|
auto replyPacket = constructPingReplyPacket(*packet);
|
||||||
const HifiSockAddr& senderSockAddr = packet->getSenderSockAddr();
|
const HifiSockAddr& senderSockAddr = packet->getSenderSockAddr();
|
||||||
|
|
|
@ -20,9 +20,7 @@ using namespace PacketType;
|
||||||
const QSet<PacketType::Value> NON_VERIFIED_PACKETS = QSet<PacketType::Value>()
|
const QSet<PacketType::Value> NON_VERIFIED_PACKETS = QSet<PacketType::Value>()
|
||||||
<< NodeJsonStats << EntityQuery
|
<< NodeJsonStats << EntityQuery
|
||||||
<< OctreeDataNack << EntityEditNack
|
<< OctreeDataNack << EntityEditNack
|
||||||
<< DomainListRequest
|
<< DomainListRequest << StopNode;
|
||||||
<< Ping
|
|
||||||
<< PingReply << StopNode;
|
|
||||||
|
|
||||||
const QSet<PacketType::Value> SEQUENCE_NUMBERED_PACKETS = QSet<PacketType::Value>() << AvatarData;
|
const QSet<PacketType::Value> SEQUENCE_NUMBERED_PACKETS = QSet<PacketType::Value>() << AvatarData;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue