mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 17:24:24 +02:00
Move PacketType::AvatarIdentityRequest so as to not break ICE
This commit is contained in:
parent
0dca842102
commit
3775bdc335
2 changed files with 26 additions and 28 deletions
|
@ -57,11 +57,10 @@ public:
|
||||||
ICEServerQuery,
|
ICEServerQuery,
|
||||||
OctreeStats,
|
OctreeStats,
|
||||||
UNUSED_PACKET_TYPE_1,
|
UNUSED_PACKET_TYPE_1,
|
||||||
UNUSED_PACKET_TYPE_2,
|
AvatarIdentityRequest,
|
||||||
AssignmentClientStatus,
|
AssignmentClientStatus,
|
||||||
NoisyMute,
|
NoisyMute,
|
||||||
AvatarIdentity,
|
AvatarIdentity,
|
||||||
AvatarIdentityRequest,
|
|
||||||
NodeIgnoreRequest,
|
NodeIgnoreRequest,
|
||||||
DomainConnectRequest,
|
DomainConnectRequest,
|
||||||
DomainServerRequireDTLS,
|
DomainServerRequireDTLS,
|
||||||
|
|
|
@ -87,36 +87,35 @@ local packet_types = {
|
||||||
[23] = "ICEServerQuery",
|
[23] = "ICEServerQuery",
|
||||||
[24] = "OctreeStats",
|
[24] = "OctreeStats",
|
||||||
[25] = "Jurisdiction",
|
[25] = "Jurisdiction",
|
||||||
[26] = "JurisdictionRequest",
|
[26] = "AvatarIdentityRequest",
|
||||||
[27] = "AssignmentClientStatus",
|
[27] = "AssignmentClientStatus",
|
||||||
[28] = "NoisyMute",
|
[28] = "NoisyMute",
|
||||||
[29] = "AvatarIdentity",
|
[29] = "AvatarIdentity",
|
||||||
[30] = "AvatarIdentityRequest",
|
[30] = "AvatarBillboard",
|
||||||
[31] = "AvatarBillboard",
|
[31] = "DomainConnectRequest",
|
||||||
[32] = "DomainConnectRequest",
|
[32] = "DomainServerRequireDTLS",
|
||||||
[33] = "DomainServerRequireDTLS",
|
[33] = "NodeJsonStats",
|
||||||
[34] = "NodeJsonStats",
|
|
||||||
[34] = "OctreeDataNack",
|
[34] = "OctreeDataNack",
|
||||||
[36] = "StopNode",
|
[35] = "StopNode",
|
||||||
[37] = "AudioEnvironment",
|
[36] = "AudioEnvironment",
|
||||||
[38] = "EntityEditNack",
|
[37] = "EntityEditNack",
|
||||||
[39] = "ICEServerHeartbeat",
|
[38] = "ICEServerHeartbeat",
|
||||||
[40] = "ICEPing",
|
[39] = "ICEPing",
|
||||||
[41] = "ICEPingReply",
|
[40] = "ICEPingReply",
|
||||||
[42] = "EntityData",
|
[41] = "EntityData",
|
||||||
[43] = "EntityQuery",
|
[42] = "EntityQuery",
|
||||||
[44] = "EntityAdd",
|
[43] = "EntityAdd",
|
||||||
[45] = "EntityErase",
|
[44] = "EntityErase",
|
||||||
[46] = "EntityEdit",
|
[45] = "EntityEdit",
|
||||||
[47] = "DomainServerConnectionToken",
|
[46] = "DomainServerConnectionToken",
|
||||||
[48] = "DomainSettingsRequest",
|
[47] = "DomainSettingsRequest",
|
||||||
[49] = "DomainSettings",
|
[48] = "DomainSettings",
|
||||||
[50] = "AssetGet",
|
[49] = "AssetGet",
|
||||||
[51] = "AssetGetReply",
|
[50] = "AssetGetReply",
|
||||||
[52] = "AssetUpload",
|
[51] = "AssetUpload",
|
||||||
[53] = "AssetUploadReply",
|
[52] = "AssetUploadReply",
|
||||||
[54] = "AssetGetInfo",
|
[53] = "AssetGetInfo",
|
||||||
[55] = "AssetGetInfoReply"
|
[54] = "AssetGetInfoReply"
|
||||||
}
|
}
|
||||||
|
|
||||||
local unsourced_packet_types = {
|
local unsourced_packet_types = {
|
||||||
|
|
Loading…
Reference in a new issue