| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef SGWC_S5C_HANDLER_H |
| #define SGWC_S5C_HANDLER_H |
|
|
| #include "context.h" |
|
|
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
|
|
| void sgwc_s5c_handle_create_session_response( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
| void sgwc_s5c_handle_delete_session_response( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
| void sgwc_s5c_handle_modify_bearer_response( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
| void sgwc_s5c_handle_create_bearer_request( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
| void sgwc_s5c_handle_update_bearer_request( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
| void sgwc_s5c_handle_delete_bearer_request( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
| void sgwc_s5c_handle_bearer_resource_failure_indication( |
| sgwc_sess_t *sess, ogs_gtp_xact_t *s5c_xact, |
| ogs_pkbuf_t *gtpbuf, ogs_gtp2_message_t *message); |
|
|
| #ifdef __cplusplus |
| } |
| #endif |
|
|
| #endif |
|
|