ip6t_REJECT.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IP6T_REJECT_H
  2. #define _IP6T_REJECT_H
  3. enum ip6t_reject_with {
  4. IP6T_ICMP_NET_UNREACHABLE,
  5. IP6T_ICMP_HOST_UNREACHABLE,
  6. IP6T_ICMP_PROT_UNREACHABLE,
  7. IP6T_ICMP_PORT_UNREACHABLE,
  8. IP6T_ICMP_ECHOREPLY
  9. };
  10. struct ip6t_reject_info {
  11. enum ip6t_reject_with with;      /* reject type */
  12. };
  13. #endif /*_IPT_REJECT_H*/