blob: 2878d8285cafe7acefbd7b20171eef94aa8e8280 [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
Christoph Hellwiga7b75c52020-07-23 08:09:07 +020015int udp_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval,
16 unsigned int optlen);
Joe Perches7e584872013-10-18 13:48:24 -070017int udp_getsockopt(struct sock *sk, int level, int optname,
18 char __user *optval, int __user *optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080019
Ying Xue1b784142015-03-02 15:37:48 +080020int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
21 int flags, int *addr_len);
Joe Perches7e584872013-10-18 13:48:24 -070022int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size,
23 int flags);
Joe Perches7e584872013-10-18 13:48:24 -070024void udp_destroy_sock(struct sock *sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080025
26#ifdef CONFIG_PROC_FS
Joe Perches7e584872013-10-18 13:48:24 -070027int udp4_seq_show(struct seq_file *seq, void *v);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080028#endif
29#endif /* _UDP4_IMPL_H */