open5gs/tests/common/ngap-build.h

59 lines
2.1 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);
2020-06-22 03:07:14 +00:00
ogs_pkbuf_t *testngap_build_initial_ue_message(
2020-06-24 04:33:10 +00:00
test_ue_t *test_ue, ogs_pkbuf_t *gmmbuf, bool s_tmsi);
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(
test_ue_t *test_ue, test_sess_t *sess);
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);
2020-06-17 05:22:28 +00:00
ogs_pkbuf_t *testngap_build_pdu_session_resource_setup_response(
test_sess_t *sess);
2021-01-01 02:07:08 +00:00
ogs_pkbuf_t *testngap_build_pdu_session_resource_modify_response(
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-03 05:50:59 +00:00
ogs_pkbuf_t *testngap_build_path_switch_request(test_sess_t *sess);
2020-05-25 16:15:22 +00:00
#ifdef __cplusplus
}
#endif
#endif /* TEST_NGAP_BUILD_H */