• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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     uid_t uid;
12     gid_t gid;
13     pid_t pid;
14     pid_t sid;
15     u_int8_t match, invert;	/* flags */
16 };
17 
18 #endif /*_IPT_OWNER_H*/
19