open5gs/lib/gtp/v1/path.h

47 lines
1.4 KiB
C

/*
* Copyright (C) 2022 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
* Author: Pau Espin Pedrol <pespin@sysmocom.de>
*
* 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/>.
*/
#if !defined(OGS_GTP_INSIDE) && !defined(OGS_GTP_COMPILATION)
#error "This header cannot be included directly."
#endif
#ifndef OGS_GTP1_PATH_H
#define OGS_GTP1_PATH_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ogs_gtp_xact_s ogs_gtp_xact_t;
ogs_pkbuf_t *ogs_gtp1_handle_echo_req(ogs_pkbuf_t *pkt);
void ogs_gtp1_send_error_message(
ogs_gtp_xact_t *xact, uint32_t teid, uint8_t type, uint8_t cause_value);
void ogs_gtp1_send_echo_request(ogs_gtp_node_t *gnode);
void ogs_gtp1_send_echo_response(ogs_gtp_xact_t *xact, uint8_t recovery);
#ifdef __cplusplus
}
#endif
#endif /* OGS_GTP1_PATH_H */