open5gs/src/smf/gtp-path.h

65 lines
2.0 KiB
C

/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef SMF_GTP_PATH_H
#define SMF_GTP_PATH_H
#include "ogs-gtp.h"
#ifdef __cplusplus
extern "C" {
#endif
int smf_gtp_open(void);
void smf_gtp_close(void);
typedef struct smf_gtp_node_s {
ogs_gtp_node_t *gnode;
ogs_metrics_inst_t *metrics[_SMF_METR_GTP_NODE_MAX];
} smf_gtp_node_t;
smf_gtp_node_t *smf_gtp_node_new(ogs_gtp_node_t *gnode);
void smf_gtp_node_free(smf_gtp_node_t *smf_gnode);
int smf_gtp1_send_create_pdp_context_response(
smf_sess_t *sess, ogs_gtp_xact_t *xact);
int smf_gtp1_send_delete_pdp_context_response(
smf_sess_t *sess, ogs_gtp_xact_t *xact);
int smf_gtp1_send_update_pdp_context_request(
smf_bearer_t *bearer, uint8_t pti, uint8_t cause_value);
int smf_gtp1_send_update_pdp_context_response(
smf_bearer_t *bearer, ogs_gtp_xact_t *xact);
int smf_gtp2_send_create_session_response(
smf_sess_t *sess, ogs_gtp_xact_t *xact);
int smf_gtp2_send_modify_bearer_response(
smf_sess_t *sess, ogs_gtp_xact_t *xact,
ogs_gtp2_modify_bearer_request_t *req, bool sgw_relocation);
int smf_gtp2_send_delete_session_response(
smf_sess_t *sess, ogs_gtp_xact_t *xact);
int smf_gtp2_send_delete_bearer_request(
smf_bearer_t *bearer, uint8_t pti, uint8_t cause_value);
#ifdef __cplusplus
}
#endif
#endif /* SMF_GTP_PATH_H */