open5gs/src/mme/s11_path.c

23 lines
319 B
C
Raw Normal View History

2017-03-23 14:05:40 +00:00
#define TRACE_MODULE _gtp_path
#include "core_debug.h"
#include "core_pkbuf.h"
#include "core_net.h"
#include "3gpp_message.h"
2017-03-23 14:15:55 +00:00
#include "s11_path.h"
2017-03-23 14:05:40 +00:00
2017-03-23 14:15:55 +00:00
status_t mme_s11_open()
2017-03-23 14:05:40 +00:00
{
return CORE_OK;
}
2017-03-23 14:15:55 +00:00
status_t mme_s11_close()
2017-03-23 14:05:40 +00:00
{
return CORE_OK;
}
status_t mme_s11_send_to_sgw(pkbuf_t *pkbuf)
{
return CORE_OK;
}