From swapnil:

Small Bug in TFT (Flow label) and ULI.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3876

svn path=/trunk/; revision=29386
This commit is contained in:
Anders Broman 2009-08-11 21:27:36 +00:00
parent f625c7131d
commit 07900e7a1a
1 changed files with 4 additions and 4 deletions

View File

@ -1285,8 +1285,8 @@ dissect_gtpv2_uli(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, proto
/* The bits 8 through 5, of octet e+3 (Fig 8.21.5-1 in TS 29.274 V8.2.0) are spare
and hence they would not make any difference to the hex string following it, thus we directly read 4 bytes from tvb */
proto_tree_add_item(tree, hf_gtpv2_uli_ecgi_eci, tvb, offset, 4, FALSE);
offset+=4;
proto_tree_add_item(tree, hf_gtpv2_uli_ecgi_eci, tvb, offset, 3, FALSE);
offset+=3;
if(offset==length)
return;
@ -2372,7 +2372,7 @@ void proto_register_gtpv2(void)
},
{&hf_gtpv2_b_tft_pf_flow_label,
{"Flow Label Type", "gtpv2.b_tft_pf_flow_label",
FT_UINT32, BASE_DEC, NULL, 0,
FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL}
},
{ &hf_gtpv2_uli_ecgi_flg,
@ -2437,7 +2437,7 @@ void proto_register_gtpv2(void)
},
{&hf_gtpv2_uli_ecgi_eci,
{"ECI (E-UTRAN Cell Identifier)", "gtpv2.uli_ecgi_eci",
FT_UINT32, BASE_DEC, NULL, 0,
FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL}
},
{&hf_gtpv2_f_teid_v4,