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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IPT_OWNER_H
  2. #define _IPT_OWNER_H
  3. /* match and invert flags */
  4. #define IPT_OWNER_UID 0x01
  5. #define IPT_OWNER_GID 0x02
  6. #define IPT_OWNER_PID 0x04
  7. #define IPT_OWNER_SID 0x08
  8. #define IPT_OWNER_COMM 0x10
  9. struct ipt_owner_info {
  10.     uid_t uid;
  11.     gid_t gid;
  12.     pid_t pid;
  13.     pid_t sid;
  14.     char comm[16];
  15.     u_int8_t match, invert; /* flags */
  16. };
  17. #endif /*_IPT_OWNER_H*/