diff options
author | Tom Parkin <tparkin@katalix.com> | 2013-01-31 01:02:25 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-31 13:53:08 -0500 |
commit | 8e72d37eb304d9ec5dfb51bc2d83e900b79ee764 (patch) | |
tree | f248711806f4146f25518196803710520baed286 /net/ipv6 | |
parent | 73df66f8b1926c59cbc83000af6bf37ecc5509dd (diff) | |
download | linux-8e72d37eb304d9ec5dfb51bc2d83e900b79ee764.tar.bz2 |
ipv6: export ip6_datagram_recv_ctl
ip6_datagram_recv_ctl and ip6_datagram_send_ctl are used for handling IPv6
ancillary data. Since ip6_datagram_send_ctl is already publicly exported for
use in modules, ip6_datagram_recv_ctl should also be available to support
ancillary data in the receive path.
Signed-off-by: Tom Parkin <tparkin@katalix.com>
Signed-off-by: James Chapman <jchapman@katalix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/datagram.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/datagram.c b/net/ipv6/datagram.c index 06fd2730838b..7a778b9a7b85 100644 --- a/net/ipv6/datagram.c +++ b/net/ipv6/datagram.c @@ -598,6 +598,7 @@ int ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg, } return 0; } +EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl); int ip6_datagram_send_ctl(struct net *net, struct sock *sk, struct msghdr *msg, struct flowi6 *fl6, |