Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 39d3520c92cf7a28c07229ca00cc35a1e8026c77 authored by Linus Torvalds on 13 August 2007, 04:25:24 UTC
Linux 2.6.23-rc3
Tip revision: 39d3520
xt_esp.h
#ifndef _XT_ESP_H
#define _XT_ESP_H

struct xt_esp
{
	u_int32_t spis[2];	/* Security Parameter Index */
	u_int8_t  invflags;	/* Inverse flags */
};

/* Values for "invflags" field in struct xt_esp. */
#define XT_ESP_INV_SPI	0x01	/* Invert the sense of spi. */
#define XT_ESP_INV_MASK	0x01	/* All possible flags. */

#endif /*_XT_ESP_H*/
back to top