logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

xt_esp.h (418B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_ESP_H
  3. #define _XT_ESP_H
  4. #include <linux/types.h>
  5. struct xt_esp {
  6. __u32 spis[2]; /* Security Parameter Index */
  7. __u8 invflags; /* Inverse flags */
  8. };
  9. /* Values for "invflags" field in struct xt_esp. */
  10. #define XT_ESP_INV_SPI 0x01 /* Invert the sense of spi. */
  11. #define XT_ESP_INV_MASK 0x01 /* All possible flags. */
  12. #endif /*_XT_ESP_H*/