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