mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-02 13:03:31 +00:00
[MME] [AMF] Add no_time_zone_information param (#2745)
Allow network operators to omit the time zone in the 4G EMM Information and 5G Configuration Update. This is useful for better compatibility with some UEs. The parameter is optional according to: * 4G: 3GPP TS 24.301 Table 8.2.13.1 * 5G: 3GPP TS 24.501 Table 8.2.19.1.1
This commit is contained in:
@@ -235,6 +235,10 @@ int ogs_app_parse_global_conf(ogs_yaml_iter_t *parent)
|
||||
"no_pfcp_rr_select")) {
|
||||
global_conf.parameter.no_pfcp_rr_select =
|
||||
ogs_yaml_iter_bool(¶meter_iter);
|
||||
} else if (!strcmp(parameter_key,
|
||||
"no_time_zone_information")) {
|
||||
global_conf.parameter.no_time_zone_information =
|
||||
ogs_yaml_iter_bool(¶meter_iter);
|
||||
} else
|
||||
ogs_warn("unknown key `%s`", parameter_key);
|
||||
}
|
||||
|
||||
@@ -62,6 +62,7 @@ typedef struct ogs_global_conf_s {
|
||||
int no_ipv4v6_local_addr_in_packet_filter;
|
||||
|
||||
int no_pfcp_rr_select;
|
||||
int no_time_zone_information;
|
||||
} parameter;
|
||||
|
||||
struct {
|
||||
|
||||
Reference in New Issue
Block a user