open5gs/src/mme/sgsap-build.h

47 lines
1.6 KiB
C
Raw Normal View History

2019-06-20 09:20:32 +00:00
/*
* Copyright (C) 2019 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 SGSAP_BUILD_H
#define SGSAP_BUILD_H
#include "mme-context.h"
#ifdef __cplusplus
extern "C" {
#endif
ogs_pkbuf_t *sgsap_build_location_update_request(mme_ue_t *mme_ue);
ogs_pkbuf_t *sgsap_build_tmsi_reallocation_complete(mme_ue_t *mme_ue);
2019-07-05 09:13:32 +00:00
ogs_pkbuf_t *sgsap_build_detach_indication(mme_ue_t *mme_ue);
2019-06-20 09:20:32 +00:00
ogs_pkbuf_t *sgsap_build_mo_csfb_indication(mme_ue_t *mme_ue);
2019-07-12 14:18:17 +00:00
ogs_pkbuf_t *sgsap_build_paging_reject(
2019-09-13 12:07:47 +00:00
ogs_nas_mobile_identity_imsi_t *nas_mobile_identity_imsi,
2019-07-12 14:18:17 +00:00
int nas_mobile_identity_imsi_len, uint8_t sgs_cause);
2019-07-09 00:27:45 +00:00
ogs_pkbuf_t *sgsap_build_service_request(mme_ue_t *mme_ue, uint8_t emm_mode);
2019-07-07 01:16:21 +00:00
ogs_pkbuf_t *sgsap_build_reset_ack(mme_vlr_t *vlr);
2020-05-23 02:24:48 +00:00
ogs_pkbuf_t *sgsap_build_uplink_unidata(mme_ue_t *mme_ue,
ogs_nas_eps_message_container_t *nas_message_container);
ogs_pkbuf_t *sgsap_build_ue_unreachable(mme_ue_t *mme_ue, uint8_t sgs_cause);
2019-06-20 09:20:32 +00:00
#ifdef __cplusplus
}
#endif
#endif /* SGSAP_BUILD_H */