mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-03 05:40:09 +00:00
Move src/../nf-sm.[ch] to lib/sbi/nf-sm.[ch]
This commit is contained in:
parent
ec9fe7b31d
commit
e6a14cb73d
278 changed files with 2939 additions and 12471 deletions
|
|
@ -170,16 +170,6 @@ static void app_context_prepare(void)
|
|||
#define USRSCTP_LOCAL_UDP_PORT 9899
|
||||
self.usrsctp.udp_port = USRSCTP_LOCAL_UDP_PORT;
|
||||
|
||||
self.sctp.heartbit_interval = 5000; /* 5 seconds */
|
||||
self.sctp.sack_delay = 200; /* 200 ms */
|
||||
self.sctp.rto_initial = 3000; /* 3 seconds */
|
||||
self.sctp.rto_min = 1000; /* 1 seconds */
|
||||
self.sctp.rto_max = 5000; /* 5 seconds */
|
||||
self.sctp.max_num_of_ostreams = OGS_DEFAULT_SCTP_MAX_NUM_OF_OSTREAMS;
|
||||
self.sctp.max_num_of_istreams = 65535;
|
||||
self.sctp.max_attempts = 4;
|
||||
self.sctp.max_initial_timeout = 8000; /* 8 seconds */
|
||||
|
||||
self.sockopt.no_delay = true;
|
||||
|
||||
#define MAX_NUM_OF_UE 1024 /* Num of UEs */
|
||||
|
|
@ -379,48 +369,6 @@ int ogs_app_context_parse_config(void)
|
|||
} else
|
||||
ogs_warn("unknown key `%s`", sockopt_key);
|
||||
}
|
||||
} else if (!strcmp(root_key, "sctp")) {
|
||||
ogs_yaml_iter_t sctp_iter;
|
||||
ogs_yaml_iter_recurse(&root_iter, &sctp_iter);
|
||||
while (ogs_yaml_iter_next(&sctp_iter)) {
|
||||
const char *sctp_key = ogs_yaml_iter_key(&sctp_iter);
|
||||
ogs_assert(sctp_key);
|
||||
if (!strcmp(sctp_key, "heartbit_interval")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.sctp.heartbit_interval = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "sack_delay")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.sctp.sack_delay = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "rto_initial")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.sctp.rto_initial = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "rto_min")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.sctp.rto_min = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "rto_max")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.sctp.rto_max = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "max_num_of_ostreams")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v)
|
||||
self.sctp.max_num_of_ostreams = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "max_num_of_istreams")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v)
|
||||
self.sctp.max_num_of_istreams = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "max_attempts")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.sctp.max_attempts = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "max_initial_timeout")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v)
|
||||
self.sctp.max_initial_timeout = atoi(v);
|
||||
} else if (!strcmp(sctp_key, "usrsctp_udp_port")) {
|
||||
const char *v = ogs_yaml_iter_value(&sctp_iter);
|
||||
if (v) self.usrsctp.udp_port = atoi(v);
|
||||
} else
|
||||
ogs_warn("unknown key `%s`", sctp_key);
|
||||
}
|
||||
} else if (!strcmp(root_key, "max")) {
|
||||
ogs_yaml_iter_t max_iter;
|
||||
ogs_yaml_iter_recurse(&root_iter, &max_iter);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue