summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-gtpv2.c
diff options
context:
space:
mode:
authorglores <gloria.pozuelo@bics.com>2016-03-03 15:41:37 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2016-03-03 17:22:29 +0000
commitb70d1d7e14801754baee6af215b2162af38db211 (patch)
tree6b3c93b4a40b8a65f47773cd9912a25e17a78d29 /epan/dissectors/packet-gtpv2.c
parentd7de3515db98a7444fe527c82de43bfaf550b698 (diff)
downloadwireshark-b70d1d7e14801754baee6af215b2162af38db211.tar.gz
GTPv2 bearer resource command message conversation fix
Change-Id: Ida7d5aa9a5dd4c7fdc66806730762c70d3d951bb Reviewed-on: https://code.wireshark.org/review/14327 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gtpv2.c')
-rw-r--r--epan/dissectors/packet-gtpv2.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gtpv2.c b/epan/dissectors/packet-gtpv2.c
index fecb9c5c35..155ca442df 100644
--- a/epan/dissectors/packet-gtpv2.c
+++ b/epan/dissectors/packet-gtpv2.c
@@ -6153,6 +6153,7 @@ gtpv2_match_response(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, gin
case GTPV2_DELETE_SESSION_REQUEST:
case GTPV2_MODIFY_BEARER_COMMAND:
case GTPV2_DELETE_BEARER_COMMAND:
+ case GTPV2_BEARER_RESOURCE_COMMAND:
gcr.is_request = TRUE;
gcr.req_frame = pinfo->num;
gcr.rep_frame = 0;
@@ -6165,6 +6166,7 @@ gtpv2_match_response(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, gin
case GTPV2_DELETE_SESSION_RESPONSE:
case GTPV2_MODIFY_BEARER_FAILURE_INDICATION:
case GTPV2_DELETE_BEARER_FAILURE_INDICATION:
+ case GTPV2_BEARER_RESOURCE_FAILURE_INDICATION:
gcr.is_request = FALSE;
gcr.req_frame = 0;
gcr.rep_frame = pinfo->num;
@@ -6191,6 +6193,7 @@ gtpv2_match_response(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, gin
case GTPV2_DELETE_SESSION_REQUEST:
case GTPV2_MODIFY_BEARER_COMMAND:
case GTPV2_DELETE_BEARER_COMMAND:
+ case GTPV2_BEARER_RESOURCE_COMMAND:
gcr.seq_nr = seq_nr;
gcrp = (gtpv2_msg_hash_t *)wmem_map_lookup(gtpv2_info->unmatched, &gcr);