/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2021 Intel Corporation. */ #ifndef _RTE_PPP_H_ #define _RTE_PPP_H_ /** * @file * * PPP headers definition. */ #include #include /** * PPP Header */ struct __rte_packed_begin rte_ppp_hdr { uint8_t addr; /**< PPP address(8) */ uint8_t ctrl; /**< PPP control(8) */ rte_be16_t proto_id; /**< PPP protocol identifier(16) */ } __rte_packed_end; #endif /* _RTE_PPP_H_ */