blob: 3226726554196ec42e84819bae2b8ee66f2bdf5b [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);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080013
Joe Perches7e584872013-10-18 13:48:24 -070014int udp_setsockopt(struct sock *sk, int level, int optname,
15 char __user *optval, unsigned int optlen);
16int udp_getsockopt(struct sock *sk, int level, int optname,
17 char __user *optval, int __user *optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080018
19#ifdef CONFIG_COMPAT
Joe Perches7e584872013-10-18 13:48:24 -070020int compat_udp_setsockopt(struct sock *sk, int level, int optname,
21 char __user *optval, unsigned int optlen);
22int compat_udp_getsockopt(struct sock *sk, int level, int optname,
23 char __user *optval, int __user *optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080024#endif
Ying Xue1b784142015-03-02 15:37:48 +080025int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
26 int flags, int *addr_len);
Joe Perches7e584872013-10-18 13:48:24 -070027int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size,
28 int flags);
Joe Perches7e584872013-10-18 13:48:24 -070029void udp_destroy_sock(struct sock *sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080030
31#ifdef CONFIG_PROC_FS
Joe Perches7e584872013-10-18 13:48:24 -070032int udp4_seq_show(struct seq_file *seq, void *v);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080033#endif
34#endif /* _UDP4_IMPL_H */