open5gs/src/mme/s6a_sm.h

23 lines
381 B
C
Raw Normal View History

2017-03-06 01:00:30 +00:00
#ifndef __S6A_SM_H__
#define __S6A_SM_H__
2017-02-28 15:00:28 +00:00
#include "core_errno.h"
2017-03-06 00:00:37 +00:00
#include "context.h"
2017-02-28 15:00:28 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
2017-03-06 01:00:30 +00:00
CORE_DECLARE(status_t) s6a_sm_init(void);
CORE_DECLARE(void) s6a_sm_final(void);
2017-03-04 15:40:05 +00:00
2017-03-24 14:01:44 +00:00
CORE_DECLARE(int) s6a_send_auth_info_req(ue_ctx_t *ue, plmn_id_t *plmn_id);
2017-02-28 15:00:28 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
2017-03-06 01:00:30 +00:00
#endif /* __S6A_SM_H__ */
2017-02-28 15:00:28 +00:00