linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / include / linux / netfilter_ipv4 / ipt_esp.h
index 78296e7..c782a83 100644 (file)
@@ -1,10 +1,16 @@
 #ifndef _IPT_ESP_H
 #define _IPT_ESP_H
 
-#include <linux/netfilter/xt_esp.h>
+struct ipt_esp
+{
+       u_int32_t spis[2];                      /* Security Parameter Index */
+       u_int8_t  invflags;                     /* Inverse flags */
+};
 
-#define ipt_esp xt_esp
-#define IPT_ESP_INV_SPI                XT_ESP_INV_SPI
-#define IPT_ESP_INV_MASK       XT_ESP_INV_MASK
+
+
+/* Values for "invflags" field in struct ipt_esp. */
+#define IPT_ESP_INV_SPI                0x01    /* Invert the sense of spi. */
+#define IPT_ESP_INV_MASK       0x01    /* All possible flags. */
 
 #endif /*_IPT_ESP_H*/