diff options
author | Omar Ramadan <omar.ramadan93@gmail.com> | 2019-05-09 10:13:46 -0700 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2019-05-10 07:07:34 +0000 |
commit | 76bbcbc19ef28907f514a3bc0fb0846055051969 (patch) | |
tree | 0fb9860ab487a363118f8e33a17d9666459664f6 /src | |
parent | c9a28a67e606aff543a67ceaddbbbd65c46a9a22 (diff) |
Add MO-FALLBACK-VALUE SGsAP IE
In testing against a particular EPC, the SGsAP-SERVICE-REQUEST
can contain a MO fallback value TLV with T 0xF1
Change-Id: Ia2460af9673818d375e28c67f1631b5f7eacdaeb
Diffstat (limited to 'src')
-rw-r--r-- | src/gsm/gsm29118.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gsm/gsm29118.c b/src/gsm/gsm29118.c index 56e74738..2c02b2fd 100644 --- a/src/gsm/gsm29118.c +++ b/src/gsm/gsm29118.c @@ -89,6 +89,7 @@ const struct value_string sgsap_iei_names[] = { { SGSAP_IE_UE_EMM_MODE, "UE-EMM-MODE" }, { SGSAP_IE_ADDL_PAGING_INDICATORS, "ADDL-PAGING-INDICATORS" }, { SGSAP_IE_TMSI_BASED_NRI_CONT, "TMSI-BASED-NRI-CONT" }, + { SGSAP_IE_MO_FALLBACK_VALUE, "MO-FALLBACK-VALUE" }, { 0, NULL } }; @@ -179,6 +180,7 @@ const struct tlv_definition sgsap_ie_tlvdef = { [SGSAP_IE_UE_EMM_MODE] = { TLV_TYPE_TLV }, [SGSAP_IE_ADDL_PAGING_INDICATORS]={ TLV_TYPE_TLV }, [SGSAP_IE_TMSI_BASED_NRI_CONT] = { TLV_TYPE_TLV }, + [SGSAP_IE_MO_FALLBACK_VALUE] = { TLV_TYPE_TLV }, }, }; |