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 9 extern const struct udp_get_port_ops udp_ipv6_ops; 10 11 extern int __udp6_lib_rcv(struct sk_buff **, struct hlist_head [], int ); 12 extern void __udp6_lib_err(struct sk_buff *, struct inet6_skb_parm *, 13 int , int , int , __be32 , struct hlist_head []); 14 15 extern int udpv6_getsockopt(struct sock *sk, int level, int optname, 16 char __user *optval, int __user *optlen); 17 extern int udpv6_setsockopt(struct sock *sk, int level, int optname, 18 char __user *optval, int optlen); 19 #ifdef CONFIG_COMPAT 20 extern int compat_udpv6_setsockopt(struct sock *sk, int level, int optname, 21 char __user *optval, int optlen); 22 extern int compat_udpv6_getsockopt(struct sock *sk, int level, int optname, 23 char __user *optval, int __user *optlen); 24 #endif 25 extern int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk, 26 struct msghdr *msg, size_t len); 27 extern int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk, 28 struct msghdr *msg, size_t len, 29 int noblock, int flags, int *addr_len); 30 extern int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb); 31 extern int udpv6_destroy_sock(struct sock *sk); 32 33 #ifdef CONFIG_PROC_FS 34 extern int udp6_seq_show(struct seq_file *seq, void *v); 35 #endif 36 #endif /* _UDP6_IMPL_H */ 37