open5gs/tests/af/event.c

63 lines
1.6 KiB
C

/*
* Copyright (C) 2019-2022 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 "context.h"
af_event_t *af_event_new(int id)
{
af_event_t *e = NULL;
e = ogs_event_size(id, sizeof(af_event_t));
ogs_assert(e);
e->h.id = id;
return e;
}
const char *af_event_get_name(af_event_t *e)
{
if (e == NULL) {
return OGS_FSM_NAME_INIT_SIG;
}
switch (e->h.id) {
case OGS_FSM_ENTRY_SIG:
return OGS_FSM_NAME_ENTRY_SIG;
case OGS_FSM_EXIT_SIG:
return OGS_FSM_NAME_EXIT_SIG;
case OGS_EVENT_SBI_SERVER:
return OGS_EVENT_NAME_SBI_SERVER;
case OGS_EVENT_SBI_CLIENT:
return OGS_EVENT_NAME_SBI_CLIENT;
case OGS_EVENT_SBI_TIMER:
return OGS_EVENT_NAME_SBI_TIMER;
case AF_EVENT_SBI_LOCAL:
return "AF_EVENT_SBI_LOCAL";
default:
break;
}
ogs_error("Unknown Event[%d]", e->h.id);
return "UNKNOWN_EVENT";
}