aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-01-15 02:41:11 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:02:23 -0500
commit17b0d7ef658583842da75eebf8001dc617f0b52e (patch)
tree079a3f24b1adb92026b3f8cc659efbf8cc948ac0 /include
parent64eb12f9972d45f3b9b0f0a33a966e311c3d5275 (diff)
[NETFILTER]: xt_mark match, revision 1
Introduces the xt_mark match revision 1. It uses fixed types, eventually obsoleting revision 0 some day (uses nonfixed types). Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter/xt_mark.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/netfilter/xt_mark.h b/include/linux/netfilter/xt_mark.h
index 802dd4842caf..fae74bc3f34e 100644
--- a/include/linux/netfilter/xt_mark.h
+++ b/include/linux/netfilter/xt_mark.h
@@ -6,4 +6,9 @@ struct xt_mark_info {
6 u_int8_t invert; 6 u_int8_t invert;
7}; 7};
8 8
9struct xt_mark_mtinfo1 {
10 u_int32_t mark, mask;
11 u_int8_t invert;
12};
13
9#endif /*_XT_MARK_H*/ 14#endif /*_XT_MARK_H*/