blob: 2878d8285cafe7acefbd7b20171eef94aa8e8280 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#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
9int __udp4_lib_rcv(struct sk_buff *, struct udp_table *, int);
David Brazdil0f672f62019-12-10 10:32:29 +000010int __udp4_lib_err(struct sk_buff *, u32, struct udp_table *);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000011
12int udp_v4_get_port(struct sock *sk, unsigned short snum);
David Brazdil0f672f62019-12-10 10:32:29 +000013void udp_v4_rehash(struct sock *sk);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000014
Olivier Deprez157378f2022-04-04 15:47:50 +020015int udp_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval,
16 unsigned int optlen);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017int udp_getsockopt(struct sock *sk, int level, int optname,
18 char __user *optval, int __user *optlen);
19
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000020int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
21 int flags, int *addr_len);
22int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size,
23 int flags);
24void udp_destroy_sock(struct sock *sk);
25
26#ifdef CONFIG_PROC_FS
27int udp4_seq_show(struct seq_file *seq, void *v);
28#endif
29#endif /* _UDP4_IMPL_H */