diff options
author | Stefan Sperling <ssperling@sysmocom.de> | 2018-12-19 19:29:20 +0100 |
---|---|---|
committer | Stefan Sperling <ssperling@sysmocom.de> | 2018-12-19 19:58:18 +0100 |
commit | 6cb833608fa39943c1ce9fe046992922e09f4266 (patch) | |
tree | 922607b8280e838573376306a646b0fa5d150f01 /include/osmocom | |
parent | b26003963e82805bfd73b13315ae85d478605383 (diff) |
rename CELL_IDENT_LAI_AND_LAC to CELL_IDENT_LAI
The name "LAI AND LAC" makes no sense because a LAC
is part of a LAI. Keep the old name available for
API backwards compatibility.
Change-Id: I2749cf75b7b45de0cd43cf4c696a6b6984f5a065
Related: OS#3124
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/gsm/protocol/gsm_08_08.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_08_08.h b/include/osmocom/gsm/protocol/gsm_08_08.h index cb9fe011..676d1cff 100644 --- a/include/osmocom/gsm/protocol/gsm_08_08.h +++ b/include/osmocom/gsm/protocol/gsm_08_08.h @@ -18,14 +18,15 @@ enum CELL_IDENT { CELL_IDENT_LAC_AND_CI = 1, CELL_IDENT_CI = 2, CELL_IDENT_NO_CELL = 3, - CELL_IDENT_LAI_AND_LAC = 4, + CELL_IDENT_LAI = 4, CELL_IDENT_LAC = 5, CELL_IDENT_BSS = 6, CELL_IDENT_UTRAN_PLMN_LAC_RNC = 8, CELL_IDENT_UTRAN_RNC = 9, CELL_IDENT_UTRAN_LAC_RNC = 10, }; - +/* Keep this misnamed CELL_IDENT for API backwards compatibility (see OS#3124). */ +#define CELL_IDENT_LAI_AND_LAC CELL_IDENT_LAI /* GSM 08.06 ยง 6.3 */ enum BSSAP_MSG_TYPE { |