mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-02 04:53:37 +00:00
[MME/AMF] Use Non-UE signalling in Paging (#1134)
This commit is contained in:
@@ -376,7 +376,7 @@ int ngap_send_paging(amf_ue_t *amf_ue)
|
||||
amf_ue->t3513.pkbuf = ogs_pkbuf_copy(ngapbuf);
|
||||
ogs_expect_or_return_val(amf_ue->t3513.pkbuf, OGS_ERROR);
|
||||
|
||||
rv = ngap_send_to_gnb(gnb, ngapbuf, amf_ue->gnb_ostream_id);
|
||||
rv = ngap_send_to_gnb(gnb, ngapbuf, NGAP_NON_UE_SIGNALLING);
|
||||
ogs_expect_or_return_val(rv == OGS_OK, rv);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -358,7 +358,7 @@ int s1ap_send_paging(mme_ue_t *mme_ue, S1AP_CNDomain_t cn_domain)
|
||||
mme_ue->t3413.pkbuf = ogs_pkbuf_copy(s1apbuf);
|
||||
ogs_expect_or_return_val(mme_ue->t3413.pkbuf, OGS_ERROR);
|
||||
|
||||
rv = s1ap_send_to_enb(enb, s1apbuf, mme_ue->enb_ostream_id);
|
||||
rv = s1ap_send_to_enb(enb, s1apbuf, S1AP_NON_UE_SIGNALLING);
|
||||
ogs_expect_or_return_val(rv == OGS_OK, rv);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user