mirror of
https://github.com/lubosz/overte.git
synced 2025-06-01 11:51:59 +02:00
Add AudioSoloRequest, BulkAvatarTraitsAck; also decode obfuscated protocols
This commit is contained in:
parent
8faff57033
commit
d604f9adfb
1 changed files with 49 additions and 49 deletions
|
@ -152,7 +152,9 @@ local packet_types = {
|
|||
[97] = "OctreeDataPersist",
|
||||
[98] = "EntityClone",
|
||||
[99] = "EntityQueryInitialResultsComplete",
|
||||
[100] = "BulkAvatarTraits"
|
||||
[100] = "BulkAvatarTraits",
|
||||
[101] = "AudioSoloRequest",
|
||||
[102] = "BulkAvatarTraitsAck"
|
||||
}
|
||||
|
||||
local unsourced_packet_types = {
|
||||
|
@ -301,7 +303,6 @@ function p_hfudt.dissector(buf, pinfo, tree)
|
|||
|
||||
-- check if we have part of a message that we need to re-assemble
|
||||
-- before it can be dissected
|
||||
if obfuscation_bits == 0 then
|
||||
if message_bit == 1 and message_position ~= 0 then
|
||||
if fragments[message_number] == nil then
|
||||
fragments[message_number] = {}
|
||||
|
@ -350,7 +351,6 @@ function p_hfudt.dissector(buf, pinfo, tree)
|
|||
else
|
||||
payload_to_dissect = buf(i):tvb()
|
||||
end
|
||||
end
|
||||
|
||||
if payload_to_dissect ~= nil then
|
||||
-- Domain packets
|
||||
|
|
Loading…
Reference in a new issue