open5gs/src/mme/emm-handler.h

61 lines
1.9 KiB
C
Raw Normal View History

2019-06-22 03:11:07 +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 EMM_HANDLER_H
#define EMM_HANDLER_H
2017-03-26 05:57:33 +00:00
2019-06-11 13:10:47 +00:00
#include "mme-context.h"
2017-03-26 06:34:34 +00:00
2017-03-26 05:57:33 +00:00
#ifdef __cplusplus
extern "C" {
2019-06-22 03:11:07 +00:00
#endif
2017-03-26 05:57:33 +00:00
2020-07-03 05:03:13 +00:00
int emm_handle_attach_request(mme_ue_t *mme_ue,
ogs_nas_eps_attach_request_t *attach_request, ogs_pkbuf_t *pkbuf);
2019-04-27 14:54:30 +00:00
int emm_handle_attach_complete(
2020-05-23 02:24:48 +00:00
mme_ue_t *mme_ue, ogs_nas_eps_attach_complete_t *attach_complete);
2019-04-27 14:54:30 +00:00
int emm_handle_identity_response(
2020-05-23 02:24:48 +00:00
mme_ue_t *mme_ue, ogs_nas_eps_identity_response_t *identity_response);
2019-04-27 14:54:30 +00:00
int emm_handle_detach_request(
2020-05-23 02:24:48 +00:00
mme_ue_t *mme_ue, ogs_nas_eps_detach_request_from_ue_t *detach_request);
2019-04-27 14:54:30 +00:00
int emm_handle_service_request(
2020-05-23 02:24:48 +00:00
mme_ue_t *mme_ue, ogs_nas_eps_service_request_t *service_request);
2020-07-03 05:03:13 +00:00
int emm_handle_tau_request(mme_ue_t *mme_ue,
ogs_nas_eps_tracking_area_update_request_t *tau_request,
ogs_pkbuf_t *pkbuf);
2017-08-09 11:49:18 +00:00
2019-09-13 12:07:47 +00:00
int emm_handle_extended_service_request(mme_ue_t *mme_ue,
2020-05-23 02:24:48 +00:00
ogs_nas_eps_extended_service_request_t *extended_service_request);
2019-07-06 13:16:13 +00:00
2019-11-18 10:34:28 +00:00
int emm_handle_security_mode_complete(mme_ue_t *mme_ue,
2020-05-23 02:24:48 +00:00
ogs_nas_eps_security_mode_complete_t *security_mode_complete);
2019-11-18 10:34:28 +00:00
bool emm_tau_request_ue_comes_from_gb_or_iu(
const ogs_nas_eps_tracking_area_update_request_t *tau_request);
2017-03-26 05:57:33 +00:00
#ifdef __cplusplus
}
2019-06-22 03:11:07 +00:00
#endif
2017-03-26 05:57:33 +00:00
2019-06-22 03:11:07 +00:00
#endif /* EMM_HANDLER_H */