Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
[deliverable/linux.git] / include / linux / netfilter_ipv4 / ipt_owner.h
1 #ifndef _IPT_OWNER_H
2 #define _IPT_OWNER_H
3
4 /* match and invert flags */
5 #define IPT_OWNER_UID 0x01
6 #define IPT_OWNER_GID 0x02
7 #define IPT_OWNER_PID 0x04
8 #define IPT_OWNER_SID 0x08
9 #define IPT_OWNER_COMM 0x10
10
11 struct ipt_owner_info {
12 __kernel_uid32_t uid;
13 __kernel_gid32_t gid;
14 __kernel_pid_t pid;
15 __kernel_pid_t sid;
16 char comm[16];
17 u_int8_t match, invert; /* flags */
18 };
19
20 #endif /*_IPT_OWNER_H*/
This page took 0.03725 seconds and 5 git commands to generate.