aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_net/rte_esp.h
blob: f77ec2eb26f5ba20ebcfb58df65a7723a3342d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright 2016 Mellanox Technologies, Ltd
 */

#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_ */