85ebc09bad
Signed-off-by: Olivier Matz <olivier.matz@6wind.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Thomas Monjalon <thomas@monjalon.net>
33 lines
468 B
C
33 lines
468 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) 2016-2017, Mellanox Technologies.
|
|
*/
|
|
|
|
#ifndef _RTE_ESP_H_
|
|
#define _RTE_ESP_H_
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* ESP-related defines
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* ESP Header
|
|
*/
|
|
struct esp_hdr {
|
|
rte_be32_t spi; /**< Security Parameters Index */
|
|
rte_be32_t seq; /**< packet sequence number */
|
|
} __attribute__((__packed__));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* RTE_ESP_H_ */
|