feat: Add dedicated QoS flow

This commit is contained in:
Sukchan Lee 2020-12-31 21:07:08 -05:00
parent 65aea5ebf2
commit 235a041b8d
205 changed files with 6053 additions and 3831 deletions

View file

@ -546,12 +546,12 @@ OpenAPI_nr_location_t *ogs_sbi_build_nr_location(
Tai = ogs_calloc(1, sizeof(*Tai));
ogs_assert(Tai);
Tai->plmn_id = ogs_sbi_build_plmn_id(&tai->plmn_id);
Tai->tac = ogs_uint24_to_string(tai->tac);
Tai->tac = ogs_uint24_to_0string(tai->tac);
Ncgi = ogs_calloc(1, sizeof(*Ncgi));
ogs_assert(Ncgi);
Ncgi->plmn_id = ogs_sbi_build_plmn_id(&nr_cgi->plmn_id);
Ncgi->nr_cell_id = ogs_uint36_to_string(nr_cgi->cell_id);
Ncgi->nr_cell_id = ogs_uint36_to_0string(nr_cgi->cell_id);
NrLocation = ogs_calloc(1, sizeof(*NrLocation));
ogs_assert(NrLocation);
@ -584,7 +584,7 @@ bool ogs_sbi_parse_nr_location(ogs_5gs_tai_t *tai, ogs_nr_cgi_t *nr_cgi,
if (Ncgi->plmn_id)
ogs_sbi_parse_plmn_id(&nr_cgi->plmn_id, Ncgi->plmn_id);
if (Ncgi->nr_cell_id)
nr_cgi->cell_id = ogs_uint36_from_string(Ncgi->nr_cell_id);
nr_cgi->cell_id = ogs_uint64_from_string(Ncgi->nr_cell_id);
}