open5gs/src/mme/event.h

29 lines
409 B
C
Raw Normal View History

2017-03-24 06:31:35 +00:00
#ifndef __MME_EVENT_H__
#define __MME_EVENT_H__
2017-02-13 00:58:55 +00:00
2017-03-24 06:31:35 +00:00
#include "core_event.h"
2017-02-13 00:58:55 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef enum {
EVT_BASE = FSM_USER_SIG,
2017-03-04 15:57:52 +00:00
EVT_LO_ENB_S1AP_ACCEPT,
EVT_LO_ENB_S1AP_CONNREFUSED,
2017-02-13 00:58:55 +00:00
2017-03-05 08:07:43 +00:00
EVT_MSG_ENB_S1AP,
2017-03-05 08:36:16 +00:00
EVT_MSG_UE_EMM,
2017-03-24 04:19:36 +00:00
EVT_MSG_MME_S11,
2017-02-13 00:58:55 +00:00
EVT_TOP,
} event_e;
#ifdef __cplusplus
}
#endif /* __cplusplus */
2017-03-24 06:31:35 +00:00
#endif /* __MME_EVENT_H__ */