]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/ipv4/udp_impl.h
lwtunnel: Validate RTA_ENCAP_TYPE attribute length
[mirror_ubuntu-jammy-kernel.git] / net / ipv4 / udp_impl.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
ba4e58ec
GR
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
7e58487b 9int __udp4_lib_rcv(struct sk_buff *, struct udp_table *, int);
32bbd879 10int __udp4_lib_err(struct sk_buff *, u32, struct udp_table *);
ba4e58ec 11
7e58487b 12int udp_v4_get_port(struct sock *sk, unsigned short snum);
8f6b5392 13void udp_v4_rehash(struct sock *sk);
ba4e58ec 14
a7b75c5a
CH
15int udp_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval,
16 unsigned int optlen);
7e58487b
JP
17int udp_getsockopt(struct sock *sk, int level, int optname,
18 char __user *optval, int __user *optlen);
ba4e58ec 19
1b784140
YX
20int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
21 int flags, int *addr_len);
7e58487b
JP
22int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size,
23 int flags);
7e58487b 24void udp_destroy_sock(struct sock *sk);
ba4e58ec
GR
25
26#ifdef CONFIG_PROC_FS
7e58487b 27int udp4_seq_show(struct seq_file *seq, void *v);
ba4e58ec
GR
28#endif
29#endif /* _UDP4_IMPL_H */