drm/vc4: mark vc4_bo_cache_purge() static
[linux-2.6-block.git] / include / uapi / linux / netfilter / xt_owner.h
CommitLineData
0265ab44
JE
1#ifndef _XT_OWNER_MATCH_H
2#define _XT_OWNER_MATCH_H
3
60c195c7
AB
4#include <linux/types.h>
5
0265ab44
JE
6enum {
7 XT_OWNER_UID = 1 << 0,
8 XT_OWNER_GID = 1 << 1,
9 XT_OWNER_SOCKET = 1 << 2,
10};
11
12struct xt_owner_match_info {
60c195c7
AB
13 __u32 uid_min, uid_max;
14 __u32 gid_min, gid_max;
15 __u8 match, invert;
0265ab44
JE
16};
17
18#endif /* _XT_OWNER_MATCH_H */