blob: 6b2fa77eeb1c3e3cf79f64a596b9799f460007c3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08002#ifndef _UDP4_IMPL_H
3#define _UDP4_IMPL_H
4#include <net/udp.h>
5#include <net/udplite.h>
6#include <net/protocol.h>
7#include <net/inet_common.h>
8
Joe Perches7e584872013-10-18 13:48:24 -07009int __udp4_lib_rcv(struct sk_buff *, struct udp_table *, int);
Stefano Brivio32bbd872018-11-08 12:19:21 +010010int __udp4_lib_err(struct sk_buff *, u32, struct udp_table *);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080011
Joe Perches7e584872013-10-18 13:48:24 -070012int udp_v4_get_port(struct sock *sk, unsigned short snum);
Alexey Kodanev8f6b5392019-01-16 19:17:44 +030013void udp_v4_rehash(struct sock *sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080014
Joe Perches7e584872013-10-18 13:48:24 -070015int udp_setsockopt(struct sock *sk, int level, int optname,
16 char __user *optval, unsigned int optlen);
17int udp_getsockopt(struct sock *sk, int level, int optname,
18 char __user *optval, int __user *optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080019
20#ifdef CONFIG_COMPAT
Joe Perches7e584872013-10-18 13:48:24 -070021int compat_udp_setsockopt(struct sock *sk, int level, int optname,
22 char __user *optval, unsigned int optlen);
23int compat_udp_getsockopt(struct sock *sk, int level, int optname,
24 char __user *optval, int __user *optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080025#endif
Ying Xue1b784142015-03-02 15:37:48 +080026int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
27 int flags, int *addr_len);
Joe Perches7e584872013-10-18 13:48:24 -070028int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size,
29 int flags);
Joe Perches7e584872013-10-18 13:48:24 -070030void udp_destroy_sock(struct sock *sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080031
32#ifdef CONFIG_PROC_FS
Joe Perches7e584872013-10-18 13:48:24 -070033int udp4_seq_show(struct seq_file *seq, void *v);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080034#endif
35#endif /* _UDP4_IMPL_H */