diff options
| author | Philipp <pmaier@sysmocom.de> | 2016-10-10 15:03:23 +0200 | 
|---|---|---|
| committer | Harald Welte <laforge@gnumonks.org> | 2016-10-12 09:29:35 +0000 | 
| commit | 349784c72d9eaff7d1dc8b9640f2d8e53b31b7e5 (patch) | |
| tree | 2bf4ff8fcbb227de1bcadcd86b92c1e05777a5ad | |
| parent | a95ee5e6e192d274d5d2c03fbe47edbc62c38beb (diff) | |
gsm0408: Adding 3g spcific RR message types
GSM 04.18, which is the successor of GSM 04.08, describes
additional RR 3g specific message types. This commit adds
four new message types related to paging and notifiction
See also 3GPP TS 04.18, section 10.4, table 10.4.1
Change-Id: I071cc9ecac342b5221fa0ec0b782b04b51b40e93
| -rw-r--r-- | include/osmocom/gsm/protocol/gsm_04_08.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/include/osmocom/gsm/protocol/gsm_04_08.h b/include/osmocom/gsm/protocol/gsm_04_08.h index 885ac8af..fa2bb06d 100644 --- a/include/osmocom/gsm/protocol/gsm_04_08.h +++ b/include/osmocom/gsm/protocol/gsm_04_08.h @@ -1052,6 +1052,11 @@ void gsm48_set_dtx(struct gsm48_cell_options *op, enum gsm48_dtx_mode full,  #define GSM48_MT_RR_NOTIF_FACCH		0x25  #define GSM48_MT_RR_NOTIF_RESP		0x26 +#define GSM48_MT_RR_UTRAN_CLSM_CHG	0x60 +#define GSM48_MT_RR_CDMA2K_CLSM_CHG	0x62 +#define GSM48_MT_RR_IS_TO_UTRAN_HANDO	0x63 +#define GSM48_MT_RR_IS_TO_CDMA2K_HANDO	0x64 +  #define GSM48_MT_RR_SYSINFO_8		0x18  #define GSM48_MT_RR_SYSINFO_1		0x19  #define GSM48_MT_RR_SYSINFO_2		0x1a | 
