]>
Commit | Line | Data |
---|---|---|
ba4e58ec GR |
1 | #ifndef _UDP4_IMPL_H |
2 | #define _UDP4_IMPL_H | |
3 | #include <net/udp.h> | |
4 | #include <net/udplite.h> | |
5 | #include <net/protocol.h> | |
6 | #include <net/inet_common.h> | |
7 | ||
7e58487b JP |
8 | int __udp4_lib_rcv(struct sk_buff *, struct udp_table *, int); |
9 | void __udp4_lib_err(struct sk_buff *, u32, struct udp_table *); | |
ba4e58ec | 10 | |
7e58487b | 11 | int udp_v4_get_port(struct sock *sk, unsigned short snum); |
ba4e58ec | 12 | |
7e58487b JP |
13 | int udp_setsockopt(struct sock *sk, int level, int optname, |
14 | char __user *optval, unsigned int optlen); | |
15 | int udp_getsockopt(struct sock *sk, int level, int optname, | |
16 | char __user *optval, int __user *optlen); | |
ba4e58ec GR |
17 | |
18 | #ifdef CONFIG_COMPAT | |
7e58487b JP |
19 | int compat_udp_setsockopt(struct sock *sk, int level, int optname, |
20 | char __user *optval, unsigned int optlen); | |
21 | int compat_udp_getsockopt(struct sock *sk, int level, int optname, | |
22 | char __user *optval, int __user *optlen); | |
ba4e58ec | 23 | #endif |
1b784140 YX |
24 | int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock, |
25 | int flags, int *addr_len); | |
7e58487b JP |
26 | int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size, |
27 | int flags); | |
30c7be26 | 28 | int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb); |
7e58487b | 29 | void udp_destroy_sock(struct sock *sk); |
ba4e58ec GR |
30 | |
31 | #ifdef CONFIG_PROC_FS | |
7e58487b | 32 | int udp4_seq_show(struct seq_file *seq, void *v); |
ba4e58ec GR |
33 | #endif |
34 | #endif /* _UDP4_IMPL_H */ |