aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtps.c
diff options
context:
space:
mode:
authorismaelrti <ismael@rti.com>2022-10-05 16:17:49 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2022-10-21 09:40:48 +0000
commit338e6b50e23674a58b42f7e30802915b02e767a4 (patch)
treefe472ce7487d7a1cbadf2ac47626a744cb24b741 /epan/dissectors/packet-rtps.c
parent8b3521272a267be86dcd88e609685882b6cdd440 (diff)
RTPS: Parse Secure Volatile DATA
Added dissection for DATA(v) submessages.
Diffstat (limited to 'epan/dissectors/packet-rtps.c')
-rw-r--r--epan/dissectors/packet-rtps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtps.c b/epan/dissectors/packet-rtps.c
index b6583ffbce..7ffe32aa5a 100644
--- a/epan/dissectors/packet-rtps.c
+++ b/epan/dissectors/packet-rtps.c
@@ -11487,7 +11487,7 @@ static void dissect_RTPS_DATA(tvbuff_t *tvb, packet_info *pinfo, gint offset, gu
rtps_util_add_seq_octets(rtps_pm_tree, pinfo, tvb, offset, encoding,
octets_to_next_header - (offset - old_offset) + 4, hf_rtps_data_serialize_data);
- } else if (wid == ENTITYID_P2P_BUILTIN_PARTICIPANT_STATELESS_WRITER) {
+ } else if (wid == ENTITYID_P2P_BUILTIN_PARTICIPANT_STATELESS_WRITER || wid == ENTITYID_P2P_BUILTIN_PARTICIPANT_VOLATILE_SECURE_WRITER) {
/* PGM stands for Participant Generic Message */
proto_tree * rtps_pgm_tree, * guid_tree, * message_identity_tree;
proto_item *ti;