Staging: DST: fix build dependancy
[firewire-audio.git] / include / linux / netfilter_ipv4 / ipt_owner.h
bloba78445be99921a832a1b648d61e7d2bcd555f803
1 #ifndef _IPT_OWNER_H
2 #define _IPT_OWNER_H
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
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 */
20 #endif /*_IPT_OWNER_H*/