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