-
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.
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/kaber/nf-next-2.6
- Loading branch information
Showing
45 changed files
with
806 additions
and
363 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
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,20 @@ | ||
/* Header file for iptables ipt_CHECKSUM target | ||
* | ||
* (C) 2002 by Harald Welte <laforge@gnumonks.org> | ||
* (C) 2010 Red Hat Inc | ||
* Author: Michael S. Tsirkin <mst@redhat.com> | ||
* | ||
* This software is distributed under GNU GPL v2, 1991 | ||
*/ | ||
#ifndef _XT_CHECKSUM_TARGET_H | ||
#define _XT_CHECKSUM_TARGET_H | ||
|
||
#include <linux/types.h> | ||
|
||
#define XT_CHECKSUM_OP_FILL 0x01 /* fill in checksum in IP header */ | ||
|
||
struct xt_CHECKSUM_info { | ||
__u8 operation; /* bitset of operations */ | ||
}; | ||
|
||
#endif /* _XT_CHECKSUM_TARGET_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,11 @@ | ||
#ifndef _XT_CPU_H | ||
#define _XT_CPU_H | ||
|
||
#include <linux/types.h> | ||
|
||
struct xt_cpu_info { | ||
__u32 cpu; | ||
__u32 invert; | ||
}; | ||
|
||
#endif /*_XT_CPU_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,27 @@ | ||
#ifndef _XT_IPVS_H | ||
#define _XT_IPVS_H | ||
|
||
enum { | ||
XT_IPVS_IPVS_PROPERTY = 1 << 0, /* all other options imply this one */ | ||
XT_IPVS_PROTO = 1 << 1, | ||
XT_IPVS_VADDR = 1 << 2, | ||
XT_IPVS_VPORT = 1 << 3, | ||
XT_IPVS_DIR = 1 << 4, | ||
XT_IPVS_METHOD = 1 << 5, | ||
XT_IPVS_VPORTCTL = 1 << 6, | ||
XT_IPVS_MASK = (1 << 7) - 1, | ||
XT_IPVS_ONCE_MASK = XT_IPVS_MASK & ~XT_IPVS_IPVS_PROPERTY | ||
}; | ||
|
||
struct xt_ipvs_mtinfo { | ||
union nf_inet_addr vaddr, vmask; | ||
__be16 vport; | ||
__u8 l4proto; | ||
__u8 fwd_method; | ||
__be16 vportctl; | ||
|
||
__u8 invert; | ||
__u8 bitmask; | ||
}; | ||
|
||
#endif /* _XT_IPVS_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
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
Oops, something went wrong.