open5gs/src/mme/sgsap-sm.c

97 lines
2.1 KiB
C

/*
* 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/>.
*/
#include "mme-event.h"
#include "mme-sm.h"
void sgsap_state_initial(ogs_fsm_t *s, mme_event_t *e)
{
ogs_assert(s);
mme_sm_debug(e);
OGS_FSM_TRAN(s, &sgsap_state_will_connect);
}
void sgsap_state_final(ogs_fsm_t *s, mme_event_t *e)
{
ogs_assert(s);
mme_sm_debug(e);
}
void sgsap_state_will_connect(ogs_fsm_t *s, mme_event_t *e)
{
ogs_assert(s);
ogs_assert(e);
mme_sm_debug(e);
switch (e->id) {
case OGS_FSM_ENTRY_SIG:
break;
case OGS_FSM_EXIT_SIG:
break;
case MME_EVT_SGSAP_MESSAGE:
break;
default:
ogs_error("Unknown event %s", mme_event_get_name(e));
break;
}
}
void sgsap_state_connected(ogs_fsm_t *s, mme_event_t *e)
{
ogs_assert(s);
ogs_assert(e);
mme_sm_debug(e);
switch (e->id) {
case OGS_FSM_ENTRY_SIG:
break;
case OGS_FSM_EXIT_SIG:
break;
case MME_EVT_SGSAP_MESSAGE:
break;
default:
ogs_error("Unknown event %s", mme_event_get_name(e));
break;
}
}
void sgsap_state_exception(ogs_fsm_t *s, mme_event_t *e)
{
ogs_assert(s);
ogs_assert(e);
mme_sm_debug(e);
switch (e->id) {
case OGS_FSM_ENTRY_SIG:
break;
case OGS_FSM_EXIT_SIG:
break;
default:
ogs_error("Unknown event %s", mme_event_get_name(e));
break;
}
}