Change AMF configuration : plmn -> plmn_support

For example,

amf:
    plmn_support:
      - plmn_id:
          mcc: 901
          mnc: 70
        s_nssai:
          - sst: 1
This commit is contained in:
Sukchan Lee 2020-09-12 13:48:51 -04:00
parent ce8d10e4fc
commit d4a9c140a8
1 changed files with 2 additions and 2 deletions

View File

@ -137,12 +137,12 @@ static int amf_context_validation(void)
}
if (self.num_of_plmn_support == 0) {
ogs_error("No amf.plmn in '%s'", ogs_app()->file);
ogs_error("No amf.plmn_support in '%s'", ogs_app()->file);
return OGS_ERROR;
}
if (self.plmn_support[0].num_of_s_nssai == 0) {
ogs_error("No amf.plmn.s_nssai in '%s'", ogs_app()->file);
ogs_error("No amf.plmn_support.s_nssai in '%s'", ogs_app()->file);
return OGS_ERROR;
}