1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(C) 2023 Marvell. 3 */ 4 5 #ifndef PDCP_CTRL_PDU_H 6 #define PDCP_CTRL_PDU_H 7 8 #include <rte_mbuf.h> 9 10 #include "pdcp_entity.h" 11 12 int 13 pdcp_ctrl_pdu_status_gen(struct entity_priv *en_priv, struct entity_priv_dl_part *dl, 14 struct rte_mbuf *m); 15 16 #endif /* PDCP_CTRL_PDU_H */ 17