|
@@ -35,14 +35,12 @@ MODULE_AUTHOR("Yasuyuki KOZAKAI <yasuyuki.kozakai@toshiba.co.jp>");
|
|
|
MODULE_DESCRIPTION("Xtables: packet \"rejection\" target for IPv6");
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
-
|
|
|
static unsigned int
|
|
|
reject_tg6(struct sk_buff *skb, const struct xt_action_param *par)
|
|
|
{
|
|
|
const struct ip6t_reject_info *reject = par->targinfo;
|
|
|
struct net *net = dev_net((par->in != NULL) ? par->in : par->out);
|
|
|
|
|
|
- pr_debug("%s: medium point\n", __func__);
|
|
|
switch (reject->with) {
|
|
|
case IP6T_ICMP6_NO_ROUTE:
|
|
|
nf_send_unreach6(net, skb, ICMPV6_NOROUTE, par->hooknum);
|
|
@@ -65,9 +63,6 @@ reject_tg6(struct sk_buff *skb, const struct xt_action_param *par)
|
|
|
case IP6T_TCP_RESET:
|
|
|
nf_send_reset6(net, skb, par->hooknum);
|
|
|
break;
|
|
|
- default:
|
|
|
- net_info_ratelimited("case %u not handled yet\n", reject->with);
|
|
|
- break;
|
|
|
}
|
|
|
|
|
|
return NF_DROP;
|