/* * Copyright (C) 2019 by Sukchan Lee * * 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 . */ #ifndef MME_S11_BUILD_H #define MME_S11_BUILD_H #include "gtp/gtp-message.h" #ifdef __cplusplus extern "C" { #endif int mme_s11_build_create_session_request( ogs_pkbuf_t **pkbuf, uint8_t type, mme_sess_t *sess); int mme_s11_build_modify_bearer_request(ogs_pkbuf_t **pkbuf, uint8_t type, mme_bearer_t *bearer, int uli_presense); int mme_s11_build_delete_session_request( ogs_pkbuf_t **pkbuf, uint8_t type, mme_sess_t *sess); int mme_s11_build_create_bearer_response( ogs_pkbuf_t **pkbuf, uint8_t type, mme_bearer_t *bearer); int mme_s11_build_update_bearer_response( ogs_pkbuf_t **pkbuf, uint8_t type, mme_bearer_t *bearer); int mme_s11_build_delete_bearer_response( ogs_pkbuf_t **pkbuf, uint8_t type, mme_bearer_t *bearer); int mme_s11_build_release_access_bearers_request( ogs_pkbuf_t **pkbuf, uint8_t type); int mme_s11_build_downlink_data_notification_ack( ogs_pkbuf_t **pkbuf, uint8_t type); int mme_s11_build_create_indirect_data_forwarding_tunnel_request( ogs_pkbuf_t **pkbuf, uint8_t type, mme_ue_t *mme_ue); #ifdef __cplusplus } #endif #endif /* MME_S11_BUILD_H */