ip6t_REJECT.h 334 B

123456789101112131415161718
  1. #ifndef _IP6T_REJECT_H
  2. #define _IP6T_REJECT_H
  3. enum ip6t_reject_with {
  4. IP6T_ICMP6_NO_ROUTE,
  5. IP6T_ICMP6_ADM_PROHIBITED,
  6. IP6T_ICMP6_NOT_NEIGHBOUR,
  7. IP6T_ICMP6_ADDR_UNREACH,
  8. IP6T_ICMP6_PORT_UNREACH,
  9. IP6T_ICMP6_ECHOREPLY,
  10. IP6T_TCP_RESET
  11. };
  12. struct ip6t_reject_info {
  13. u_int32_t with; /* reject type */
  14. };
  15. #endif /*_IP6T_REJECT_H*/