open5gs/src/mme/mme-fd-path.h

47 lines
1.4 KiB
C
Raw Normal View History

2019-06-16 02:25:41 +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 MME_FD_PATH_H
#define MME_FD_PATH_H
2017-04-04 02:00:25 +00:00
2019-06-11 13:10:47 +00:00
#include "mme-context.h"
2017-04-04 02:00:25 +00:00
#ifdef __cplusplus
extern "C" {
2019-06-16 02:25:41 +00:00
#endif
2017-04-04 02:00:25 +00:00
2019-04-27 14:54:30 +00:00
int mme_fd_init(void);
void mme_fd_final(void);
2017-04-04 02:00:25 +00:00
2017-04-09 13:01:54 +00:00
/* MME Sends Authentication Information Request to HSS */
void mme_s6a_send_air(enb_ue_t *enb_ue, mme_ue_t *mme_ue,
2019-09-13 12:07:47 +00:00
ogs_nas_authentication_failure_parameter_t
*authentication_failure_parameter);
2017-04-09 13:01:54 +00:00
/* MME Sends Update Location Request to HSS */
void mme_s6a_send_ulr(enb_ue_t *enb_ue, mme_ue_t *mme_ue);
/* MME Sends Purge UE Request to HSS */
void mme_s6a_send_pur(enb_ue_t *enb_ue, mme_ue_t *mme_ue);
2017-04-04 02:00:25 +00:00
#ifdef __cplusplus
}
2019-06-16 02:25:41 +00:00
#endif
2017-04-04 02:00:25 +00:00
2019-06-16 02:25:41 +00:00
#endif /* MME_FD_PATH_H */
2017-04-04 02:00:25 +00:00