]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/linux/netfilter_ipv6/ip6t_owner.h
Merge branch 'omap-clock-fixes' of git://git.pwsan.com/linux-2.6
[linux-2.6-omap-h63xx.git] / include / linux / netfilter_ipv6 / ip6t_owner.h
1 #ifndef _IP6T_OWNER_H
2 #define _IP6T_OWNER_H
3
4 /* match and invert flags */
5 #define IP6T_OWNER_UID  0x01
6 #define IP6T_OWNER_GID  0x02
7 #define IP6T_OWNER_PID  0x04
8 #define IP6T_OWNER_SID  0x08
9
10 struct ip6t_owner_info {
11     __kernel_uid32_t uid;
12     __kernel_gid32_t gid;
13     __kernel_pid_t pid;
14     __kernel_pid_t sid;
15     u_int8_t match, invert;     /* flags */
16 };
17
18 #endif /*_IPT_OWNER_H*/