-
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.
yaml --- r: 25034 b: refs/heads/master c: 23344cb h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Apr 2, 2006
1 parent
9118a24
commit 37addff
Showing
45 changed files
with
1,839 additions
and
853 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: 289eee6fa78e999208120c856ef3ae5a817fd59c | ||
refs/heads/master: 23344cb341902f4e3431d8137dca93d6e186d054 |
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 |
---|---|---|
|
@@ -322,3 +322,4 @@ SYSCALL(spu_create) | |
COMPAT_SYS(pselect6) | ||
COMPAT_SYS(ppoll) | ||
SYSCALL(unshare) | ||
SYSCALL(splice) |
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 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#ifndef _XT_MULTIPORT_H | ||
#define _XT_MULTIPORT_H | ||
|
||
enum xt_multiport_flags | ||
{ | ||
XT_MULTIPORT_SOURCE, | ||
XT_MULTIPORT_DESTINATION, | ||
XT_MULTIPORT_EITHER | ||
}; | ||
|
||
#define XT_MULTI_PORTS 15 | ||
|
||
/* Must fit inside union xt_matchinfo: 16 bytes */ | ||
struct xt_multiport | ||
{ | ||
u_int8_t flags; /* Type of comparison */ | ||
u_int8_t count; /* Number of ports */ | ||
u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ | ||
}; | ||
|
||
struct xt_multiport_v1 | ||
{ | ||
u_int8_t flags; /* Type of comparison */ | ||
u_int8_t count; /* Number of ports */ | ||
u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ | ||
u_int8_t pflags[XT_MULTI_PORTS]; /* Port flags */ | ||
u_int8_t invert; /* Invert flag */ | ||
}; | ||
|
||
#endif /*_XT_MULTIPORT_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
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*/ |
Oops, something went wrong.