]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/uapi/linux/netfilter/xt_esp.h
Merge branch 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / include / uapi / linux / netfilter / xt_esp.h
CommitLineData
6f52b16c 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
dc5ab2fa
YK
2#ifndef _XT_ESP_H
3#define _XT_ESP_H
4
60c195c7
AB
5#include <linux/types.h>
6
d94d9fee 7struct xt_esp {
60c195c7
AB
8 __u32 spis[2]; /* Security Parameter Index */
9 __u8 invflags; /* Inverse flags */
dc5ab2fa
YK
10};
11
12/* Values for "invflags" field in struct xt_esp. */
13#define XT_ESP_INV_SPI 0x01 /* Invert the sense of spi. */
14#define XT_ESP_INV_MASK 0x01 /* All possible flags. */
15
16#endif /*_XT_ESP_H*/