mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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,
|
||||
OctreeStats,
|
||||
UNUSED_PACKET_TYPE_1,
|
||||
UNUSED_PACKET_TYPE_2,
|
||||
AvatarIdentityRequest,
|
||||
AssignmentClientStatus,
|
||||
NoisyMute,
|
||||
AvatarIdentity,
|
||||
AvatarIdentityRequest,
|
||||
NodeIgnoreRequest,
|
||||
DomainConnectRequest,
|
||||
DomainServerRequireDTLS,
|
||||
|
|
|
@ -87,36 +87,35 @@ local packet_types = {
|
|||
[23] = "ICEServerQuery",
|
||||
[24] = "OctreeStats",
|
||||
[25] = "Jurisdiction",
|
||||
[26] = "JurisdictionRequest",
|
||||
[26] = "AvatarIdentityRequest",
|
||||
[27] = "AssignmentClientStatus",
|
||||
[28] = "NoisyMute",
|
||||
[29] = "AvatarIdentity",
|
||||
[30] = "AvatarIdentityRequest",
|
||||
[31] = "AvatarBillboard",
|
||||
[32] = "DomainConnectRequest",
|
||||
[33] = "DomainServerRequireDTLS",
|
||||
[34] = "NodeJsonStats",
|
||||
[30] = "AvatarBillboard",
|
||||
[31] = "DomainConnectRequest",
|
||||
[32] = "DomainServerRequireDTLS",
|
||||
[33] = "NodeJsonStats",
|
||||
[34] = "OctreeDataNack",
|
||||
[36] = "StopNode",
|
||||
[37] = "AudioEnvironment",
|
||||
[38] = "EntityEditNack",
|
||||
[39] = "ICEServerHeartbeat",
|
||||
[40] = "ICEPing",
|
||||
[41] = "ICEPingReply",
|
||||
[42] = "EntityData",
|
||||
[43] = "EntityQuery",
|
||||
[44] = "EntityAdd",
|
||||
[45] = "EntityErase",
|
||||
[46] = "EntityEdit",
|
||||
[47] = "DomainServerConnectionToken",
|
||||
[48] = "DomainSettingsRequest",
|
||||
[49] = "DomainSettings",
|
||||
[50] = "AssetGet",
|
||||
[51] = "AssetGetReply",
|
||||
[52] = "AssetUpload",
|
||||
[53] = "AssetUploadReply",
|
||||
[54] = "AssetGetInfo",
|
||||
[55] = "AssetGetInfoReply"
|
||||
[35] = "StopNode",
|
||||
[36] = "AudioEnvironment",
|
||||
[37] = "EntityEditNack",
|
||||
[38] = "ICEServerHeartbeat",
|
||||
[39] = "ICEPing",
|
||||
[40] = "ICEPingReply",
|
||||
[41] = "EntityData",
|
||||
[42] = "EntityQuery",
|
||||
[43] = "EntityAdd",
|
||||
[44] = "EntityErase",
|
||||
[45] = "EntityEdit",
|
||||
[46] = "DomainServerConnectionToken",
|
||||
[47] = "DomainSettingsRequest",
|
||||
[48] = "DomainSettings",
|
||||
[49] = "AssetGet",
|
||||
[50] = "AssetGetReply",
|
||||
[51] = "AssetUpload",
|
||||
[52] = "AssetUploadReply",
|
||||
[53] = "AssetGetInfo",
|
||||
[54] = "AssetGetInfoReply"
|
||||
}
|
||||
|
||||
local unsourced_packet_types = {
|
||||
|
|
Loading…
Reference in a new issue