summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2008-01-29 13:38:05 +0000
committer/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2008-01-29 13:38:05 +0000
commit0a70ed756a176ab048a9a9dc7d2fcabd117f1019 (patch)
treea1a14e36766057a429ee85bb9f39de9e6d93810d /include/linux
parentf8d036e5c8653406d2b69d69bcd3ea85d5b9f328 (diff)
[IPTABLES]: libxt_owner: UID/GID range support
UID/GID range support for libxt_owner Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netfilter/xt_owner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netfilter/xt_owner.h b/include/linux/netfilter/xt_owner.h
index eacd34e..c84e52c 100644
--- a/include/linux/netfilter/xt_owner.h
+++ b/include/linux/netfilter/xt_owner.h
@@ -8,8 +8,8 @@ enum {
};
struct xt_owner_match_info {
- u_int32_t uid;
- u_int32_t gid;
+ u_int32_t uid_min, uid_max;
+ u_int32_t gid_min, gid_max;
u_int8_t match, invert;
};