netfilter: xtables: remove xt_owner v0
Superseded by xt_owner v1 (v2.6.24-2388-g0265ab4). Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
This commit is contained in:
@@ -28,7 +28,6 @@ header-y += ipt_limit.h
|
||||
header-y += ipt_mac.h
|
||||
header-y += ipt_mark.h
|
||||
header-y += ipt_multiport.h
|
||||
header-y += ipt_owner.h
|
||||
header-y += ipt_physdev.h
|
||||
header-y += ipt_pkttype.h
|
||||
header-y += ipt_policy.h
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
#ifndef _IPT_OWNER_H
|
||||
#define _IPT_OWNER_H
|
||||
|
||||
/* match and invert flags */
|
||||
#define IPT_OWNER_UID 0x01
|
||||
#define IPT_OWNER_GID 0x02
|
||||
#define IPT_OWNER_PID 0x04
|
||||
#define IPT_OWNER_SID 0x08
|
||||
#define IPT_OWNER_COMM 0x10
|
||||
|
||||
struct ipt_owner_info {
|
||||
__kernel_uid32_t uid;
|
||||
__kernel_gid32_t gid;
|
||||
__kernel_pid_t pid;
|
||||
__kernel_pid_t sid;
|
||||
char comm[16];
|
||||
u_int8_t match, invert; /* flags */
|
||||
};
|
||||
|
||||
#endif /*_IPT_OWNER_H*/
|
||||
@@ -14,7 +14,6 @@ header-y += ip6t_mark.h
|
||||
header-y += ip6t_mh.h
|
||||
header-y += ip6t_multiport.h
|
||||
header-y += ip6t_opts.h
|
||||
header-y += ip6t_owner.h
|
||||
header-y += ip6t_physdev.h
|
||||
header-y += ip6t_policy.h
|
||||
header-y += ip6t_rt.h
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
#ifndef _IP6T_OWNER_H
|
||||
#define _IP6T_OWNER_H
|
||||
|
||||
/* match and invert flags */
|
||||
#define IP6T_OWNER_UID 0x01
|
||||
#define IP6T_OWNER_GID 0x02
|
||||
#define IP6T_OWNER_PID 0x04
|
||||
#define IP6T_OWNER_SID 0x08
|
||||
|
||||
struct ip6t_owner_info {
|
||||
__kernel_uid32_t uid;
|
||||
__kernel_gid32_t gid;
|
||||
__kernel_pid_t pid;
|
||||
__kernel_pid_t sid;
|
||||
u_int8_t match, invert; /* flags */
|
||||
};
|
||||
|
||||
#endif /*_IPT_OWNER_H*/
|
||||
Reference in New Issue
Block a user