mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
Add PCF(Policy Control Function)
This commit is contained in:
parent
fb95725ca4
commit
198abc6e8b
299 changed files with 29050 additions and 1075 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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(¶meter_iter);
|
||||
} else if (!strcmp(parameter_key, "no_pcf")) {
|
||||
self.parameter.no_pcf =
|
||||
ogs_yaml_iter_bool(¶meter_iter);
|
||||
} else if (!strcmp(parameter_key, "no_udr")) {
|
||||
self.parameter.no_udr =
|
||||
ogs_yaml_iter_bool(¶meter_iter);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue