mirror of
https://github.com/open5gs/open5gs.git
synced 2026-04-28 03:19:31 +00:00
Typos Fix
This commit is contained in:
parent
90cb00ced3
commit
cd80aa432e
26 changed files with 40 additions and 40 deletions
|
|
@ -354,7 +354,7 @@ $ ./install/bin/open5gs-udrd
|
|||
$ ./install/bin/open5gs-seppd -c ./install/etc/open5gs/sepp1.yaml
|
||||
```
|
||||
|
||||
#### Visted Network
|
||||
#### Visited Network
|
||||
```
|
||||
$ ./install/bin/open5gs-nrfd
|
||||
$ ./install/bin/open5gs-scpd
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ extern "C" {
|
|||
|
||||
#define OGS_DIAM_S6A_CT_MME_UPDATE_PROCEDURE (0)
|
||||
#define OGS_DIAM_S6A_CT_SGSN_UPDATE_PROCEDURE (1)
|
||||
#define OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWL (2)
|
||||
#define OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWAL (2)
|
||||
#define OGS_DIAM_S6A_CT_UPDATE_PROCEDURE_IWF (3)
|
||||
#define OGS_DIAM_S6A_CT_INITIAL_ATTACH_PROCEDURE (4)
|
||||
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -128,7 +128,7 @@ static void amf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -108,7 +108,7 @@ static void ausf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -111,7 +111,7 @@ static void bsf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -1531,7 +1531,7 @@ int hss_handle_change_event(const bson_t *document)
|
|||
if (send_clr_flag) {
|
||||
ogs_info("[%s] Cancel Location Requested", imsi_bcd);
|
||||
hss_s6a_send_clr(imsi_bcd, NULL, NULL,
|
||||
OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWL);
|
||||
OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWAL);
|
||||
} else if (send_idr_flag) {
|
||||
ogs_info("[%s] Subscription-Data Changed", imsi_bcd);
|
||||
hss_s6a_send_idr(imsi_bcd, 0, subdatamask);
|
||||
|
|
|
|||
|
|
@ -301,7 +301,7 @@ static int hss_ogs_diam_cx_mar_cb( struct msg **msg, struct avp *avp,
|
|||
/* Check if IMPI(User-Name) + IMPU(Public-Identity) is associated */
|
||||
matched = hss_cx_identity_is_associated(user_name, public_identity);
|
||||
if (!matched) {
|
||||
ogs_error("User-Name[%s] Public-Identity[%s] is not assocated",
|
||||
ogs_error("User-Name[%s] Public-Identity[%s] is not associated",
|
||||
user_name, public_identity);
|
||||
result_code = OGS_DIAM_CX_ERROR_IDENTITIES_DONT_MATCH;
|
||||
goto out;
|
||||
|
|
@ -545,7 +545,7 @@ static int hss_ogs_diam_cx_mar_cb( struct msg **msg, struct avp *avp,
|
|||
ret = fd_msg_avp_add(avp, MSG_BRW_LAST_CHILD, avpch);
|
||||
ogs_assert(ret == 0);
|
||||
|
||||
/* Set the Integirty-Key AVP */
|
||||
/* Set the Integrity-Key AVP */
|
||||
ret = fd_msg_avp_new(ogs_diam_cx_integrity_key, 0, &avpch);
|
||||
ogs_assert(ret == 0);
|
||||
val.os.data = ik;
|
||||
|
|
@ -686,7 +686,7 @@ static int hss_ogs_diam_cx_sar_cb( struct msg **msg, struct avp *avp,
|
|||
/* Check if IMPI(User-Name) + IMPU(Public-Identity) is associated */
|
||||
matched = hss_cx_identity_is_associated(user_name, public_identity);
|
||||
if (!matched) {
|
||||
ogs_error("User-Name[%s] Public-Identity[%s] is not assocated",
|
||||
ogs_error("User-Name[%s] Public-Identity[%s] is not associated",
|
||||
user_name, public_identity);
|
||||
result_code = OGS_DIAM_CX_ERROR_IDENTITIES_DONT_MATCH;
|
||||
goto out;
|
||||
|
|
@ -717,7 +717,7 @@ static int hss_ogs_diam_cx_sar_cb( struct msg **msg, struct avp *avp,
|
|||
visited_network_identifier =
|
||||
hss_cx_get_visited_network_identifier(public_identity);
|
||||
if (!visited_network_identifier) {
|
||||
ogs_error("Cannot find Visted-Network-Identifier "
|
||||
ogs_error("Cannot find Visited-Network-Identifier "
|
||||
"for User-Name[%s] Public-Identity[%s]",
|
||||
user_name, public_identity);
|
||||
result_code = OGS_DIAM_CX_ERROR_IDENTITY_NOT_REGISTERED;
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ static void hss_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -1340,7 +1340,7 @@ void hss_s6a_send_clr(char *imsi_bcd, char *mme_host, char *mme_realm,
|
|||
/* Set the CLR-Flags */
|
||||
ret = fd_msg_avp_new(ogs_diam_s6a_clr_flags, 0, &avp);
|
||||
ogs_assert(ret == 0);
|
||||
if (cancellation_type == OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWL) {
|
||||
if (cancellation_type == OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWAL) {
|
||||
val.u32 = (OGS_DIAM_S6A_CLR_FLAGS_REATTACH_REQUIRED |
|
||||
OGS_DIAM_S6A_CLR_FLAGS_S6A_S6D_INDICATOR);
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -317,7 +317,7 @@ static int hss_ogs_diam_swx_mar_cb( struct msg **msg, struct avp *avp,
|
|||
ret = fd_msg_avp_add(avp, MSG_BRW_LAST_CHILD, avpch);
|
||||
ogs_assert(ret == 0);
|
||||
|
||||
/* Set the Integirty-Key AVP */
|
||||
/* Set the Integrity-Key AVP */
|
||||
ret = fd_msg_avp_new(ogs_diam_cx_integrity_key, 0, &avpch);
|
||||
ogs_assert(ret == 0);
|
||||
val.os.data = ik;
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ static void mme_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -277,7 +277,7 @@ void mme_s6a_handle_clr(mme_ue_t *mme_ue, ogs_diam_s6a_message_t *s6a_message)
|
|||
ogs_debug(" OGS_NAS_EPS TYPE[%d]", mme_ue->nas_eps.type);
|
||||
|
||||
switch (clr_message->cancellation_type) {
|
||||
case OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWL:
|
||||
case OGS_DIAM_S6A_CT_SUBSCRIPTION_WITHDRAWAL:
|
||||
mme_ue->detach_type = MME_DETACH_TYPE_HSS_EXPLICIT;
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ static void nrf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -108,7 +108,7 @@ static void nssf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -129,7 +129,7 @@ static void pcf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ static void pcrf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -110,7 +110,7 @@ static void scp_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ int app_initialize(const char *const argv[])
|
|||
|
||||
rv = sepp_initialize();
|
||||
if (rv != OGS_OK) {
|
||||
ogs_error("Failed to intialize SEPP");
|
||||
ogs_error("Failed to initialize SEPP");
|
||||
return rv;
|
||||
}
|
||||
ogs_info("SEPP initialize...done");
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ static void event_termination(void)
|
|||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
sepp_node_t *sepp_node = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -115,7 +115,7 @@ static void sepp_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ static void sgwc_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ static void sgwu_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -162,7 +162,7 @@ static void smf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -108,7 +108,7 @@ static void udm_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -113,7 +113,7 @@ static void udr_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ static void upf_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ static void event_termination(void)
|
|||
{
|
||||
ogs_sbi_nf_instance_t *nf_instance = NULL;
|
||||
|
||||
/* Sending NF Instance De-registeration to NRF */
|
||||
/* Sending NF Instance De-registration to NRF */
|
||||
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
|
||||
ogs_sbi_nf_fsm_fini(nf_instance);
|
||||
|
||||
|
|
@ -117,7 +117,7 @@ static void af_main(void *data)
|
|||
/*
|
||||
* After ogs_pollset_poll(), ogs_timer_mgr_expire() must be called.
|
||||
*
|
||||
* The reason is why ogs_timer_mgr_next() can get the corrent value
|
||||
* The reason is why ogs_timer_mgr_next() can get the current value
|
||||
* when ogs_timer_stop() is called internally in ogs_timer_mgr_expire().
|
||||
*
|
||||
* You should not use event-queue before ogs_timer_mgr_expire().
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue