GTPv2: Track Session during Inter RAT Mobility signaling

This commit is contained in:
Joakim Karlsson 2023-01-20 13:31:05 +01:00 committed by AndersBroman
parent 39d9c77109
commit dee461254b
1 changed files with 4 additions and 0 deletions

View File

@ -8862,6 +8862,10 @@ track_gtpv2_session(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, gtpv
add_gtp_session(pinfo->num, session);
}
}
else if (gtpv2_hdr->message == GTPV2_MODIFY_BEARER_REQUEST) {
/* If MBEAREQ and not already in the list then we create a new session*/
add_gtp_session(pinfo->num, gtp_session_count++);
}
}
}
}