/* * 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_TIMER_H #define MME_TIMER_H #include "ogs-core.h" #ifdef __cplusplus extern "C" { #endif /* forward declaration */ typedef enum { MME_TIMER_BASE = 0, MME_TIMER_S1_DELAYED_SEND, MME_TIMER_S1_HOLDING, MME_TIMER_T3413, MME_TIMER_T3422, MME_TIMER_T3450, MME_TIMER_T3460, MME_TIMER_T3470, MME_TIMER_T3489, MME_TIMER_MOBILE_REACHABLE, MME_TIMER_IMPLICIT_DETACH, MME_TIMER_S11_HOLDING, MME_TIMER_SGS_CLI_CONN_TO_SRV, MAX_NUM_OF_MME_TIMER, } mme_timer_e; typedef struct mme_timer_cfg_s { bool have; int max_count; ogs_time_t duration; } mme_timer_cfg_t; mme_timer_cfg_t *mme_timer_cfg(mme_timer_e id); const char *mme_timer_get_name(mme_timer_e id); void mme_timer_s1_delayed_send(void *data); void mme_timer_t3413_expire(void *data); void mme_timer_t3422_expire(void *data); void mme_timer_t3450_expire(void *data); void mme_timer_t3460_expire(void *data); void mme_timer_t3470_expire(void *data); void mme_timer_t3489_expire(void *data); void mme_timer_mobile_reachable_expire(void *data); void mme_timer_implicit_detach_expire(void *data); void mme_timer_sgs_cli_conn_to_srv(void *data); void mme_timer_s1_holding_timer_expire(void *data); void mme_timer_s11_holding_timer_expire(void *data); #ifdef __cplusplus } #endif #endif /* MME_TIMER_H */