packet-gmr1_rr: Add new RR message names from v3.4.1 of GMR-1 3G 44.008

Change-Id: I4212e7ea323a7ebd24cfa49f02c0a9315be2f6f5
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2019-09-01 22:43:42 +02:00
parent 86e7a0273a
commit bb0d535dca
1 changed files with 17 additions and 1 deletions

View File

@ -6,7 +6,7 @@
* References:
* [1] ETSI TS 101 376-4-8 V1.3.1 - GMR-1 04.008
* [2] ETSI TS 101 376-4-8 V2.2.1 - GMPRS-1 04.008
* [3] ETSI TS 101 376-4-8 V3.1.1 - GMR-1 3G 44.008
* [3] ETSI TS 101 376-4-8 V3.4.1 - GMR-1 3G 44.008
* [4] ETSI TS 100 940 V7.21.0 - GSM 04.08
* [5] ETSI TS 101 376-4-12 V3.2.1 - GMR-1 3G 44.060
* [6] ETSI TS 101 376-5-6 V1.3.1 - GMR-1 05.008
@ -1672,6 +1672,14 @@ static const value_string gmr1_msg_rr_strings[] = {
{ 0x46, "Information Response Current Beam" },
{ 0x4f, "Information Response Error" },
/* Other / GMR1-3G */
{ 0x80, "Immediate Assignment Type 4" },
{ 0x81, "Paging Request Type 4" },
{ 0x82, "Position Verification Notify Type 2" },
{ 0x83, "Immediate Assignment Type 5" },
{ 0x84, "Immediate Assignment Reject Type 4" },
{ 0x85, "System Information Type 2bis" },
/* End */
{ 0, NULL }
};
@ -1739,6 +1747,14 @@ static const gmr1_msg_func_t gmr1_msg_rr_func[NUM_GMR1_MSG_RR] = {
NULL, /* Info. Resp. Current Beam */
NULL, /* Info. Resp. Error */
/* Other / GMR1-3G */
NULL, /* Imm. Ass. Type 4 */
NULL, /* Paging Request Type 4 */
NULL, /* Position Verification Notify Type 2 */
NULL, /* Imm. Ass. Type 5 */
NULL, /* Imm. Ass. Reject Type 4 */
NULL, /* Sys. Info. Type 2bis */
NULL,
};