udp.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Definitions for the UDP module.
  7. *
  8. * Version: @(#)udp.h 1.0.2 05/07/93
  9. *
  10. * Authors: Ross Biro
  11. * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12. *
  13. * Fixes:
  14. * Alan Cox : Turned on udp checksums. I don't want to
  15. * chase 'memory corruption' bugs that aren't!
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License
  19. * as published by the Free Software Foundation; either version
  20. * 2 of the License, or (at your option) any later version.
  21. */
  22. #ifndef _UDP_H
  23. #define _UDP_H
  24. #include <linux/list.h>
  25. #include <net/inet_sock.h>
  26. #include <net/sock.h>
  27. #include <net/snmp.h>
  28. #include <linux/seq_file.h>
  29. #define UDP_HTABLE_SIZE 128
  30. /* udp.c: This needs to be shared by v4 and v6 because the lookup
  31. * and hashing code needs to work with different AF's yet
  32. * the port space is shared.
  33. */
  34. extern struct hlist_head udp_hash[UDP_HTABLE_SIZE];
  35. extern rwlock_t udp_hash_lock;
  36. extern int udp_port_rover;
  37. static inline int udp_lport_inuse(u16 num)
  38. {
  39. struct sock *sk;
  40. struct hlist_node *node;
  41. sk_for_each(sk, node, &udp_hash[num & (UDP_HTABLE_SIZE - 1)])
  42. if (inet_sk(sk)->num == num)
  43. return 1;
  44. return 0;
  45. }
  46. /* Note: this must match 'valbool' in sock_setsockopt */
  47. #define UDP_CSUM_NOXMIT 1
  48. /* Used by SunRPC/xprt layer. */
  49. #define UDP_CSUM_NORCV 2
  50. /* Default, as per the RFC, is to always do csums. */
  51. #define UDP_CSUM_DEFAULT 0
  52. extern struct proto udp_prot;
  53. struct sk_buff;
  54. extern void udp_err(struct sk_buff *, u32);
  55. extern int udp_sendmsg(struct kiocb *iocb, struct sock *sk,
  56. struct msghdr *msg, size_t len);
  57. extern int udp_rcv(struct sk_buff *skb);
  58. extern int udp_ioctl(struct sock *sk, int cmd, unsigned long arg);
  59. extern int udp_disconnect(struct sock *sk, int flags);
  60. extern unsigned int udp_poll(struct file *file, struct socket *sock,
  61. poll_table *wait);
  62. DECLARE_SNMP_STAT(struct udp_mib, udp_statistics);
  63. #define UDP_INC_STATS(field) SNMP_INC_STATS(udp_statistics, field)
  64. #define UDP_INC_STATS_BH(field) SNMP_INC_STATS_BH(udp_statistics, field)
  65. #define UDP_INC_STATS_USER(field) SNMP_INC_STATS_USER(udp_statistics, field)
  66. /* /proc */
  67. struct udp_seq_afinfo {
  68. struct module *owner;
  69. char *name;
  70. sa_family_t family;
  71. int (*seq_show) (struct seq_file *m, void *v);
  72. struct file_operations *seq_fops;
  73. };
  74. struct udp_iter_state {
  75. sa_family_t family;
  76. int bucket;
  77. struct seq_operations seq_ops;
  78. };
  79. #ifdef CONFIG_PROC_FS
  80. extern int udp_proc_register(struct udp_seq_afinfo *afinfo);
  81. extern void udp_proc_unregister(struct udp_seq_afinfo *afinfo);
  82. extern int udp4_proc_init(void);
  83. extern void udp4_proc_exit(void);
  84. #endif
  85. #endif /* _UDP_H */