open5gs/tests/common/ngap-build.h

87 lines
3.4 KiB
C
Raw Normal View History

2020-05-25 16:15:22 +00:00
/*
* Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef TEST_NGAP_BUILD_H
#define TEST_NGAP_BUILD_H
#ifdef __cplusplus
extern "C" {
#endif
2020-06-26 02:44:28 +00:00
ogs_pkbuf_t *testngap_build_ng_setup_request(uint32_t gnb_id, uint8_t bitsize);
ogs_pkbuf_t *testngap_build_ran_configuration_update(bool supported_ta_list);
2020-06-22 03:07:14 +00:00
ogs_pkbuf_t *testngap_build_initial_ue_message(
test_ue_t *test_ue, ogs_pkbuf_t *gmmbuf,
bool s_tmsi, bool ue_context_requested);
2020-06-04 18:12:05 +00:00
ogs_pkbuf_t *testngap_build_uplink_nas_transport(
test_ue_t *test_ue, ogs_pkbuf_t *gmmbuf);
2020-05-25 16:15:22 +00:00
2020-06-22 03:07:14 +00:00
ogs_pkbuf_t *testngap_build_initial_context_setup_response(
2021-01-04 04:29:01 +00:00
test_ue_t *test_ue, bool pdu_session);
2020-06-17 05:22:28 +00:00
ogs_pkbuf_t *testngap_build_initial_context_setup_failure(test_ue_t *test_ue,
NGAP_Cause_PR group, long cause);
ogs_pkbuf_t *testngap_build_ue_radio_capability_info_indication(
test_ue_t *test_ue);
2020-06-22 03:07:14 +00:00
ogs_pkbuf_t *testngap_build_ue_context_release_request(test_ue_t *test_ue,
2020-06-24 04:33:10 +00:00
NGAP_Cause_PR group, long cause, bool pdu_session);
2020-06-22 03:07:14 +00:00
ogs_pkbuf_t *testngap_build_ue_context_release_complete(test_ue_t *test_ue);
ogs_pkbuf_t *testngap_ue_build_pdu_session_resource_setup_response(
test_ue_t *test_ue);
ogs_pkbuf_t *testngap_sess_build_pdu_session_resource_setup_response(
2020-06-17 05:22:28 +00:00
test_sess_t *sess);
ogs_pkbuf_t *testngap_sess_build_pdu_session_resource_failed_to_setup(
test_sess_t *sess, NGAP_Cause_PR group, long cause);
ogs_pkbuf_t *testngap_sess_build_pdu_session_resource_modify_response(
test_sess_t *sess);
2021-11-14 12:07:56 +00:00
ogs_pkbuf_t *testngap_build_qos_flow_resource_modify_response(
test_bearer_t *qos_flow);
ogs_pkbuf_t *testngap_build_qos_flow_resource_release_response(
2021-01-01 02:07:08 +00:00
test_bearer_t *qos_flow);
2020-07-02 05:50:23 +00:00
ogs_pkbuf_t *testngap_build_pdu_session_resource_release_response(
test_sess_t *sess);
2020-06-17 05:22:28 +00:00
2021-01-28 19:23:54 +00:00
ogs_pkbuf_t *testngap_build_uplink_ran_configuration_transfer(
uint32_t source_gnb_id, uint8_t source_bitsize,
uint32_t target_gnb_id, uint8_t target_bitsize);
2021-01-04 04:29:01 +00:00
ogs_pkbuf_t *testngap_build_path_switch_request(test_ue_t *test_ue);
2021-01-03 05:50:59 +00:00
2021-01-28 19:23:54 +00:00
ogs_pkbuf_t *testngap_build_handover_required(
test_ue_t *test_ue, NGAP_HandoverType_t handover_type,
uint32_t gnb_id, uint8_t bitsize,
NGAP_Cause_PR group, long cause,
bool direct);
ogs_pkbuf_t *testngap_build_uplink_ran_status_transfer(test_ue_t *test_ue);
ogs_pkbuf_t *testngap_build_handover_request_ack(test_ue_t *test_ue);
ogs_pkbuf_t *testngap_build_handover_notify(test_ue_t *test_ue);
ogs_pkbuf_t *testngap_build_handover_failure(test_ue_t *test_ue,
NGAP_Cause_PR group, long cause);
ogs_pkbuf_t *testngap_build_handover_cancel(test_ue_t *test_ue,
NGAP_Cause_PR group, long cause);
2020-05-25 16:15:22 +00:00
#ifdef __cplusplus
}
#endif
#endif /* TEST_NGAP_BUILD_H */