ip6t_owner.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IP6T_OWNER_H
  2. #define _IP6T_OWNER_H
  3. /* match and invert flags */
  4. #define IP6T_OWNER_UID 0x01
  5. #define IP6T_OWNER_GID 0x02
  6. #define IP6T_OWNER_PID 0x04
  7. #define IP6T_OWNER_SID 0x08
  8. struct ip6t_owner_info {
  9.     uid_t uid;
  10.     gid_t gid;
  11.     pid_t pid;
  12.     pid_t sid;
  13.     u_int8_t match, invert; /* flags */
  14. };
  15. #endif /*_IPT_OWNER_H*/