[IPV6]: Ignore ipv6 events on non-IPV6 capable devices.
[linux-2.6-block.git] / net / ipv6 / udp_impl.h
CommitLineData
ba4e58ec
GR
1#ifndef _UDP6_IMPL_H
2#define _UDP6_IMPL_H
3#include <net/udp.h>
4#include <net/udplite.h>
5#include <net/protocol.h>
6#include <net/addrconf.h>
7#include <net/inet_common.h>
8
fc038410
DM
9extern const struct udp_get_port_ops udp_ipv6_ops;
10
ba4e58ec
GR
11extern int __udp6_lib_rcv(struct sk_buff **, struct hlist_head [], int );
12extern void __udp6_lib_err(struct sk_buff *, struct inet6_skb_parm *,
13 int , int , int , __be32 , struct hlist_head []);
14
15extern int udpv6_getsockopt(struct sock *sk, int level, int optname,
1ab1457c 16 char __user *optval, int __user *optlen);
ba4e58ec 17extern int udpv6_setsockopt(struct sock *sk, int level, int optname,
1ab1457c 18 char __user *optval, int optlen);
ba4e58ec
GR
19#ifdef CONFIG_COMPAT
20extern int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
21 char __user *optval, int optlen);
22extern int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
23 char __user *optval, int __user *optlen);
24#endif
25extern int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
26 struct msghdr *msg, size_t len);
27extern int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
28 struct msghdr *msg, size_t len,
1ab1457c 29 int noblock, int flags, int *addr_len);
ba4e58ec
GR
30extern int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb);
31extern int udpv6_destroy_sock(struct sock *sk);
32
33#ifdef CONFIG_PROC_FS
34extern int udp6_seq_show(struct seq_file *seq, void *v);
35#endif
36#endif /* _UDP6_IMPL_H */