S1AP: add support for NTN NB-IoT TACs

This commit is contained in:
Pascal Quantin 2022-08-12 20:44:29 +02:00
parent abe78a4109
commit cf17011c53
2 changed files with 2 additions and 2 deletions

View File

@ -1437,7 +1437,7 @@ M-TMSI TYPE = FT_UINT32 DISPLAY = BASE_DEC_HEX
guint32 rat_type = 0xffffffff;
struct s1ap_private_data *s1ap_data = s1ap_get_private_data(actx->pinfo);
%(DEFAULT_BODY)s
if (s1ap_data->s1ap_conv && s1ap_data->supported_ta && (rat_type == nbiot)) {
if (s1ap_data->s1ap_conv && s1ap_data->supported_ta && rat_type <= nbiot_othersat) {
guint64 *key;
guint i;

View File

@ -9676,7 +9676,7 @@ dissect_s1ap_RAT_Type(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, p
offset = dissect_per_enumerated(tvb, offset, actx, tree, hf_index,
1, &rat_type, TRUE, 8, NULL);
if (s1ap_data->s1ap_conv && s1ap_data->supported_ta && (rat_type == nbiot)) {
if (s1ap_data->s1ap_conv && s1ap_data->supported_ta && rat_type <= nbiot_othersat) {
guint64 *key;
guint i;