From fbde1c7130abfb38a91c7c6c52ab826540d08dd3 Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Thu, 20 Jan 2011 13:19:26 +0000 Subject: [PATCH] Update a comment. svn path=/trunk/; revision=35596 --- epan/dissectors/packet-gtp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c index c28ed3d904..d8a83b2d0a 100644 --- a/epan/dissectors/packet-gtp.c +++ b/epan/dissectors/packet-gtp.c @@ -4804,6 +4804,11 @@ static int decode_gtp_target_id(tvbuff_t * tvb, int offset, packet_info * pinfo offset = offset + 1; proto_tree_add_item(ext_tree, hf_gtp_ext_length, tvb, offset, 2, FALSE); offset = offset + 2; + /* The Target Identification information element contains the identification of a target RNC. Octets 4-n shall be encoded + * as the "Target RNC-ID" part of the "Target ID" parameter in 3GPP TS 25.413 [7]. Therefore, the "Choice Target ID" + * that indicates "Target RNC-ID" (numerical value of 0x20) shall not be included in the "Target RNC-ID" value in octets + * 4-n. + */ next_tvb = tvb_new_subset(tvb, offset, length, length); dissect_ranap_TargetRNC_ID(next_tvb, 0, &asn1_ctx, ext_tree, hf_gtp_targetRNC_ID);