repo.or.cz
/
wrt350n-kernel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[wrt350n-kernel.git]
/
include
/
linux
/
netfilter
/
xt_owner.h
blob
c84e52cfe415f55ee22563d464cf6b7311bb4df2
1
#ifndef _XT_OWNER_MATCH_H
2
#define _XT_OWNER_MATCH_H
3
4
enum
{
5
XT_OWNER_UID
=
1
<<
0
,
6
XT_OWNER_GID
=
1
<<
1
,
7
XT_OWNER_SOCKET
=
1
<<
2
,
8
};
9
10
struct
xt_owner_match_info
{
11
u_int32_t uid_min
,
uid_max
;
12
u_int32_t gid_min
,
gid_max
;
13
u_int8_t match
,
invert
;
14
};
15
16
#endif
/* _XT_OWNER_MATCH_H */