mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
The goal of this commit is to keep the NGAP library tidy and remove all handlers that are not currently implemented and other dead code.
23 lines
464 B
C
23 lines
464 B
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
/*!
|
|
* \brief ngap procedures for overload messages within gNB
|
|
*/
|
|
|
|
#ifndef NGAP_GNB_OVERLOAD_H_
|
|
#define NGAP_GNB_OVERLOAD_H_
|
|
|
|
#include <netinet/in.h>
|
|
#include <netinet/sctp.h>
|
|
#include <stdint.h>
|
|
#include "NGAP_NGAP-PDU.h"
|
|
|
|
/**
|
|
* \brief Handle an overload stop message
|
|
**/
|
|
int ngap_gNB_handle_overload_stop(sctp_assoc_t assoc_id, uint32_t stream, NGAP_NGAP_PDU_t *pdu);
|
|
|
|
#endif /* NGAP_GNB_OVERLOAD_H_ */
|