diff options
author | David S. Miller <davem@davemloft.net> | 2012-07-11 23:43:53 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-11 23:43:53 -0700 |
commit | e8599ff4b1d6b0d61e1074ae4ba9fca8dd0c41d0 (patch) | |
tree | c3e4a138fce1f57b8d4e4361be87eff85a14eef7 /include/net/ip6_route.h | |
parent | 30f2a5f379d0b4b4e733df138a49e054ebf75ff8 (diff) | |
download | linux-e8599ff4b1d6b0d61e1074ae4ba9fca8dd0c41d0.tar.gz linux-e8599ff4b1d6b0d61e1074ae4ba9fca8dd0c41d0.tar.bz2 linux-e8599ff4b1d6b0d61e1074ae4ba9fca8dd0c41d0.zip |
ipv6: Move bulk of redirect handling into rt6_redirect().
This sets things up so that we can have the protocol error handlers
call down into the ipv6 route code for redirects just as ipv4 already
does.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip6_route.h')
-rw-r--r-- | include/net/ip6_route.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/net/ip6_route.h b/include/net/ip6_route.h index 58cb3fc34879..5cedbd7688c6 100644 --- a/include/net/ip6_route.h +++ b/include/net/ip6_route.h @@ -133,12 +133,7 @@ extern int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, const struct in6_addr *gwaddr); -extern void rt6_redirect(const struct in6_addr *dest, - const struct in6_addr *src, - const struct in6_addr *saddr, - struct neighbour *neigh, - u8 *lladdr, - int on_link); +extern void rt6_redirect(struct sk_buff *skb); extern void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, int oif, u32 mark); |