udp_impl.h 966 B

1234567891011121314151617181920212223242526272829
  1. /* 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. int __udp4_lib_rcv(struct sk_buff *, struct udp_table *, int);
  9. int __udp4_lib_err(struct sk_buff *, u32, struct udp_table *);
  10. int udp_v4_get_port(struct sock *sk, unsigned short snum);
  11. void udp_v4_rehash(struct sock *sk);
  12. int udp_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval,
  13. unsigned int optlen);
  14. int udp_getsockopt(struct sock *sk, int level, int optname,
  15. char __user *optval, int __user *optlen);
  16. int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
  17. int flags, int *addr_len);
  18. int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size,
  19. int flags);
  20. void udp_destroy_sock(struct sock *sk);
  21. #ifdef CONFIG_PROC_FS
  22. int udp4_seq_show(struct seq_file *seq, void *v);
  23. #endif
  24. #endif /* _UDP4_IMPL_H */