-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yasuyuki Kozakai
authored and
David S. Miller
committed
Apr 1, 2006
1 parent
47dd1a0
commit 05b0954
Showing
12 changed files
with
95 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 9606a21635cec077e1928273751b44ecc824a49d | ||
refs/heads/master: dc5ab2faece3b7473931357db7f63f596678481d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#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*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,10 @@ | ||
#ifndef _IPT_ESP_H | ||
#define _IPT_ESP_H | ||
|
||
struct ipt_esp | ||
{ | ||
u_int32_t spis[2]; /* Security Parameter Index */ | ||
u_int8_t invflags; /* Inverse flags */ | ||
}; | ||
#include <linux/netfilter/xt_esp.h> | ||
|
||
|
||
|
||
/* 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. */ | ||
#define ipt_esp xt_esp | ||
#define IPT_ESP_INV_SPI XT_ESP_INV_SPI | ||
#define IPT_ESP_INV_MASK XT_ESP_INV_MASK | ||
|
||
#endif /*_IPT_ESP_H*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
#ifndef _IP6T_ESP_H | ||
#define _IP6T_ESP_H | ||
|
||
struct ip6t_esp | ||
{ | ||
u_int32_t spis[2]; /* Security Parameter Index */ | ||
u_int8_t invflags; /* Inverse flags */ | ||
}; | ||
#include <linux/netfilter/xt_esp.h> | ||
|
||
/* Values for "invflags" field in struct ip6t_esp. */ | ||
#define IP6T_ESP_INV_SPI 0x01 /* Invert the sense of spi. */ | ||
#define IP6T_ESP_INV_MASK 0x01 /* All possible flags. */ | ||
#define ip6t_esp xt_esp | ||
#define IP6T_ESP_INV_SPI XT_ESP_INV_SPI | ||
#define IP6T_ESP_INV_MASK XT_ESP_INV_MASK | ||
|
||
#endif /*_IP6T_ESP_H*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters