mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-20 19:44:56 +02:00
xt_TEE: free skb when route lookup failed
This commit is contained in:
@@ -4,6 +4,7 @@ HEAD
|
|||||||
- TEE: do rechecksumming in PREROUTING too
|
- TEE: do rechecksumming in PREROUTING too
|
||||||
- TEE: decrease TTL on cloned packet
|
- TEE: decrease TTL on cloned packet
|
||||||
- TEE: set dont-fragment on cloned packets
|
- TEE: set dont-fragment on cloned packets
|
||||||
|
- TEE: free skb when route lookup failed
|
||||||
|
|
||||||
|
|
||||||
Xtables-addons 1.24 (March 17 2010)
|
Xtables-addons 1.24 (March 17 2010)
|
||||||
|
@@ -76,6 +76,7 @@ tee_tg_route4(struct sk_buff *skb, const struct xt_tee_tginfo *info)
|
|||||||
if (net_ratelimit())
|
if (net_ratelimit())
|
||||||
pr_debug(KBUILD_MODNAME
|
pr_debug(KBUILD_MODNAME
|
||||||
": could not route packet (%d)", err);
|
": could not route packet (%d)", err);
|
||||||
|
kfree_skb(skb);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,6 +250,7 @@ tee_tg_route6(struct sk_buff *skb, const struct xt_tee_tginfo *info)
|
|||||||
if (dst == NULL) {
|
if (dst == NULL) {
|
||||||
if (net_ratelimit())
|
if (net_ratelimit())
|
||||||
printk(KERN_ERR "ip6_route_output failed for tee\n");
|
printk(KERN_ERR "ip6_route_output failed for tee\n");
|
||||||
|
kfree_skb(skb);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user