open5gs/src/mme/mme_event.h

44 lines
813 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-03-26 06:34:34 +00:00
#include "core_pkbuf.h"
2017-02-13 00:58:55 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
2017-04-14 00:57:52 +00:00
#define S6A_CMD_UPDATE_LOCATION 316
#define S6A_CMD_AUTHENTICATION_INFORMATION 318
2017-04-04 01:49:19 +00:00
/* forward declaration */
2017-02-13 00:58:55 +00:00
typedef enum {
2017-03-24 09:47:05 +00:00
MME_EVT_BASE = FSM_USER_SIG,
2017-02-13 00:58:55 +00:00
2017-04-13 02:08:42 +00:00
MME_EVT_S1AP_ENB_MSG,
MME_EVT_S1AP_ENB_LO_ACCEPT,
MME_EVT_S1AP_ENB_LO_CONNREFUSED,
2017-04-12 23:48:11 +00:00
2017-04-13 02:08:42 +00:00
MME_EVT_EMM_UE_MSG,
2017-04-14 00:57:52 +00:00
MME_EVT_EMM_UE_FROM_S6A,
2017-08-07 22:58:13 +00:00
MME_EVT_EMM_UE_T3413,
2017-04-14 00:57:52 +00:00
2017-04-14 01:27:31 +00:00
MME_EVT_ESM_BEARER_MSG,
2017-04-14 00:57:52 +00:00
2017-04-14 01:27:31 +00:00
MME_EVT_S11_UE_MSG,
MME_EVT_S11_TRANSACTION_T3,
2017-03-24 09:47:05 +00:00
MME_EVT_TOP,
2017-02-13 00:58:55 +00:00
} event_e;
2017-03-27 01:22:30 +00:00
#define mme_event_send(__ptr_e) event_send(mme_self()->queue_id, (__ptr_e))
2017-03-24 09:47:05 +00:00
CORE_DECLARE(char*) mme_event_get_name(event_t *e);
2017-02-13 00:58:55 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
2017-03-24 06:31:35 +00:00
#endif /* __MME_EVENT_H__ */