mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Most of the encoder/decoder F1 operation has been moved to a library under openair2/F1AP/lib/. Thus, these includes are not actually necessary, and are even problematic if code includes this header that is not linked to F1AP (see next commit). Remove all header includes, and put only the necessary ones into the various source files instead (where they belong, as otherwise we get massive include files that might even affect compile time). Signed-off-by: Robert Schmidt <robert.schmidt@openairinterface.org>
14 lines
279 B
C
14 lines
279 B
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
#ifndef F1AP_ENCODER_H_
|
|
#define F1AP_ENCODER_H_
|
|
|
|
#include "F1AP_F1AP-PDU.h"
|
|
|
|
int f1ap_encode_pdu(F1AP_F1AP_PDU_t *pdu, uint8_t **buffer, uint32_t *length)
|
|
__attribute__ ((warn_unused_result));
|
|
|
|
#endif /* F1AP_ENCODER_H_ */
|