open5gs/src/sgw/sgw_s11_handler.h

32 lines
1.2 KiB
C
Raw Normal View History

2017-09-01 12:35:45 +00:00
#ifndef __SGW_S11_HANDLER_H__
#define __SGW_S11_HANDLER_H__
2017-04-04 02:18:16 +00:00
2017-08-31 01:48:14 +00:00
#include "gtp_message.h"
2017-04-04 02:18:16 +00:00
2017-04-06 14:29:20 +00:00
#include "sgw_context.h"
2017-04-04 02:18:16 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
2017-09-04 11:06:54 +00:00
CORE_DECLARE(void) sgw_s11_handle_create_session_request(gtp_xact_t *s11_xact,
2017-09-01 12:35:45 +00:00
sgw_ue_t *sgw_ue, gtp_message_t *gtp_message);
2017-09-04 11:06:54 +00:00
CORE_DECLARE(void) sgw_s11_handle_modify_bearer_request(gtp_xact_t *s11_xact,
2017-09-01 12:35:45 +00:00
sgw_ue_t *sgw_ue, gtp_modify_bearer_request_t *req);
2017-09-04 11:06:54 +00:00
CORE_DECLARE(void) sgw_s11_handle_delete_session_request(gtp_xact_t *s11_xact,
2017-09-01 12:35:45 +00:00
sgw_ue_t *sgw_ue, gtp_message_t *gtp_message);
CORE_DECLARE(void) sgw_s11_handle_create_bearer_response(gtp_xact_t *s11_xact,
sgw_ue_t *sgw_ue, gtp_message_t *gtp_message);
2017-07-24 09:03:51 +00:00
2017-09-04 11:06:54 +00:00
CORE_DECLARE(void) sgw_s11_handle_release_access_bearers_request(
2017-09-01 12:35:45 +00:00
gtp_xact_t *s11_xact, sgw_ue_t *sgw_ue,
2017-09-01 00:36:55 +00:00
gtp_release_access_bearers_request_t *req);
2017-09-04 11:06:54 +00:00
CORE_DECLARE(void) sgw_s11_handle_lo_dldata_notification(sgw_bearer_t *bearer);
CORE_DECLARE(void) sgw_s11_handle_downlink_data_notification_ack(
sgw_ue_t *sgw_ue, gtp_downlink_data_notification_acknowledge_t *ack);
2017-04-04 02:18:16 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
2017-09-01 12:35:45 +00:00
#endif /* __SGW_S11_HANDLER_H__ */