aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorNicolas BERTIN <nicolas.bertin@al-enterprise.com>2017-05-02 23:36:05 +0200
committerAnders Broman <a.broman58@gmail.com>2017-05-03 08:11:12 +0000
commit37d0e1b0b7fdfa26efaf5811cb56129e9f72f26e (patch)
tree90666207166622e47980719b94f17cad1437f028 /epan
parent13b65875d640fc860c4b0eaa12b88a2f60c936c4 (diff)
ua3g: updated START_RECORD_RTP message decoding
Change-Id: I98d2aa5098d3019f829e75e46a0842a9d87786aa Reviewed-on: https://code.wireshark.org/review/21469 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ua3g.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ua3g.c b/epan/dissectors/packet-ua3g.c
index dd8a4ba1fb..9c96c87776 100644
--- a/epan/dissectors/packet-ua3g.c
+++ b/epan/dissectors/packet-ua3g.c
@@ -990,6 +990,8 @@ static const value_string ip_device_routing_cmd_record_rtp_vals[] = {
{0x07 , "Type Of Service"},
{0x08 , "Master Key For SRTP Session"},
{0x09 , "Master Salt Key For SRTP Session"},
+ {0x10 , "Integrity checking enabled for this communication"},
+ {0x11 , "Integrity method of Thales component"},
{0x30 , "MD5 Authentication"},
{0, NULL}
};
@@ -1589,6 +1591,8 @@ decode_ip_device_routing(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo,
case 0x07: /* Type Of Service */
case 0x08: /* Master Key For SRTP Session */
case 0x09: /* Master Salt Key For SRTP Session */
+ case 0x10: /* Integrity checking enabled for this communication */
+ case 0x11: /* Integrity method of Thales component */
case 0x30: /* MD5 Authentication */
default:
if (parameter_length <= 8) {