open5gs/src/mme/s1ap_path.h

26 lines
520 B
C
Raw Normal View History

2017-02-13 05:17:26 +00:00
#ifndef __S1AP_PATH_H__
#define __S1AP_PATH_H__
#include "core_pkbuf.h"
2017-03-26 06:34:34 +00:00
#include "core_net.h"
2017-02-13 05:17:26 +00:00
2017-04-06 10:20:33 +00:00
#include "mme_context.h"
2017-02-13 05:17:26 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
2017-03-27 04:22:42 +00:00
CORE_DECLARE(status_t) s1ap_listen();
2017-02-13 05:17:26 +00:00
CORE_DECLARE(status_t) s1ap_close();
CORE_DECLARE(status_t) s1ap_send(net_sock_t *s, pkbuf_t *pkb);
2017-04-06 11:10:00 +00:00
CORE_DECLARE(status_t) s1ap_send_to_enb(mme_enb_t *enb, pkbuf_t *pkb);
2017-02-13 05:17:26 +00:00
int _s1ap_recv_cb(net_sock_t *net_sock, void *data);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* !__S1_PATH_H__ */