open5gs/test
Sukchan Lee 8fea12643a nas_plmn_id_t structure for NAS message. (#166)
/**********************************
 * NAS PLMN_ID Structure             */
typedef struct _nas_plmn_id_t {
ED2(uint8_t mcc2:4;,
    uint8_t mcc1:4;)
ED2(uint8_t mnc3:4;,
    uint8_t mcc3:4;)
ED2(uint8_t mnc2:4;,
    uint8_t mnc1:4;)
} __attribute__ ((packed)) nas_plmn_id_t;

/**********************************
 * PLMN_ID Structure             */
typedef struct _plmn_id_t {
ED2(c_uint8_t mcc2:4;,
    c_uint8_t mcc1:4;)
ED2(c_uint8_t mnc1:4;,
    c_uint8_t mcc3:4;)
ED2(c_uint8_t mnc3:4;,
    c_uint8_t mnc2:4;)
} __attribute__ ((packed)) plmn_id_t;
2019-03-31 14:26:18 +09:00
..
basic nas_plmn_id_t structure for NAS message. (#166) 2019-03-31 14:26:18 +09:00
common Change directory src/app to src/common 2018-08-14 17:28:22 +09:00
volte Change directory src/app to src/common 2018-08-14 17:28:22 +09:00
Makefile.am fix the compiler error in the mongo-c-driver 1.11 2018-06-23 21:14:03 +09:00
sample-volte.conf.in for make check, sample configuration is added 2018-02-05 22:45:14 +09:00
sample.conf.in for make check, sample configuration is added 2018-02-05 22:45:14 +09:00
testsuite.at testsuite is added. (refer to libosmocom) 2018-02-06 11:59:49 +09:00