-
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: 78823 b: refs/heads/master c: f72e25a h: refs/heads/master i: 78821: f7e39e4 78819: 9f1f5c7 78815: 4fbbefb v: v3
- Loading branch information
Jan Engelhardt
authored and
David S. Miller
committed
Jan 28, 2008
1 parent
112b05a
commit a67bb5d
Showing
9 changed files
with
45 additions
and
31 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: 2ae15b64e6a1608c840c60df38e8e5eef7b2b8c3 | ||
refs/heads/master: f72e25a897c7edda03a0e1f767925d98772684da |
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,17 @@ | ||
#ifndef _LINUX_NETFILTER_XT_IPRANGE_H | ||
#define _LINUX_NETFILTER_XT_IPRANGE_H 1 | ||
|
||
enum { | ||
IPRANGE_SRC = 1 << 0, /* match source IP address */ | ||
IPRANGE_DST = 1 << 1, /* match destination IP address */ | ||
IPRANGE_SRC_INV = 1 << 4, /* negate the condition */ | ||
IPRANGE_DST_INV = 1 << 5, /* -"- */ | ||
}; | ||
|
||
struct xt_iprange_mtinfo { | ||
union nf_inet_addr src_min, src_max; | ||
union nf_inet_addr dst_min, dst_max; | ||
u_int8_t flags; | ||
}; | ||
|
||
#endif /* _LINUX_NETFILTER_XT_IPRANGE_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 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