Commit 72ef8be8 authored by Robert Schmidt's avatar Robert Schmidt

Change types in S1AP Register REQ: list of MCC/MNC/TAC

parent d85054c2
...@@ -325,12 +325,14 @@ typedef struct s1ap_register_enb_req_s { ...@@ -325,12 +325,14 @@ typedef struct s1ap_register_enb_req_s {
/* Tracking area code */ /* Tracking area code */
uint16_t tac; uint16_t tac;
#define PLMN_LIST_MAX_SIZE 6
/* Mobile Country Code /* Mobile Country Code
* Mobile Network Code * Mobile Network Code
*/ */
uint16_t mcc; uint16_t mcc[PLMN_LIST_MAX_SIZE];
uint16_t mnc; uint16_t mnc[PLMN_LIST_MAX_SIZE];
uint8_t mnc_digit_length; uint8_t mnc_digit_length[PLMN_LIST_MAX_SIZE];
uint8_t num_plmn;
/* Default Paging DRX of the eNB as defined in TS 36.304 */ /* Default Paging DRX of the eNB as defined in TS 36.304 */
paging_drx_t default_drx; paging_drx_t default_drx;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment