mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
UE context transfer (#3052)
* [SBI] Handle and store AMF info * [SBI] Add "target GUAMI" discovery option * [SBI] Handle UeContextTransfer request and response messages * [AMF] Handle NF discovery from AMF to AMF * [AMF] Add UE Context Transfer Request/Response from AMF to AMF * [SCP] Handle UeContextTransfer * Follow-up on #3052 * [AMF] force authentication after 'Ue context transfer' for now * [AMF] force authentication after 'Ue context transfer' for now --------- Co-authored-by: Sukchan Lee <acetcom@gmail.com>
This commit is contained in:
parent
ea122da9fc
commit
e1820e4e54
24 changed files with 1352 additions and 5 deletions
|
|
@ -85,6 +85,8 @@ extern "C" {
|
|||
|
||||
#define OGS_MAX_NUM_OF_ALGORITHM 8
|
||||
|
||||
#define OGS_MAX_5G_GUTI_LEN 28
|
||||
|
||||
#define OGS_MAX_NUM_OF_SERVED_GUMMEI 8 /* maxnoofRATs: 8 */
|
||||
#define OGS_MAX_NUM_OF_SERVED_GUAMI 256 /* maxnoofServedGUAMIs: 256 */
|
||||
#define OGS_MAX_NUM_OF_SUPPORTED_TA 256 /* maxnoofTACs: 256 */
|
||||
|
|
@ -271,10 +273,11 @@ ogs_amf_id_t *ogs_amf_id_build(ogs_amf_id_t *amf_id,
|
|||
#define OGS_PROTECTION_SCHEME_PROFILE_B 2
|
||||
|
||||
/************************************
|
||||
* SUPI/GPSI */
|
||||
* SUPI/GPSI/GUTI */
|
||||
#define OGS_ID_SUPI_TYPE_IMSI "imsi"
|
||||
#define OGS_ID_GPSI_TYPE_MSISDN "msisdn"
|
||||
#define OGS_ID_SUPI_TYPE_IMEISV "imeisv"
|
||||
#define OGS_ID_5G_GUTI_TYPE "5g-guti"
|
||||
char *ogs_id_get_type(const char *str);
|
||||
char *ogs_id_get_value(const char *str);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue