Add PCF(Policy Control Function)

This commit is contained in:
Sukchan Lee 2020-12-11 14:03:20 -05:00
parent fb95725ca4
commit 198abc6e8b
299 changed files with 29050 additions and 1075 deletions

View file

@ -75,6 +75,9 @@ void udm_terminate(void);
int ausf_initialize(void);
void ausf_terminate(void);
int pcf_initialize(void);
void pcf_terminate(void);
int upf_initialize(void);
void upf_terminate(void);

View file

@ -303,6 +303,9 @@ int ogs_app_context_parse_config(void)
} else if (!strcmp(parameter_key, "no_udm")) {
self.parameter.no_udm =
ogs_yaml_iter_bool(&parameter_iter);
} else if (!strcmp(parameter_key, "no_pcf")) {
self.parameter.no_pcf =
ogs_yaml_iter_bool(&parameter_iter);
} else if (!strcmp(parameter_key, "no_udr")) {
self.parameter.no_udr =
ogs_yaml_iter_bool(&parameter_iter);

View file

@ -62,6 +62,7 @@ typedef struct ogs_app_context_s {
int no_upf;
int no_ausf;
int no_udm;
int no_pcf;
int no_udr;
int no_nrf;