PageRenderTime 29ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

sys/netinet/udp_var.h

http://www.minix3.org/
C Header | 108 lines | 56 code | 11 blank | 41 comment | 0 complexity | 220e6e67b1bca0a79a4cb2bc239b6439 MD5 | raw file
Possible License(s): MIT, WTFPL, AGPL-1.0, BSD-3-Clause, GPL-3.0, LGPL-2.0, JSON, 0BSD
  1. /* $NetBSD: udp_var.h,v 1.37 2011/09/24 17:18:17 christos Exp $ */
  2. /*
  3. * Copyright (c) 1982, 1986, 1989, 1993
  4. * The Regents of the University of California. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. Neither the name of the University nor the names of its contributors
  15. * may be used to endorse or promote products derived from this software
  16. * without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  19. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  22. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. *
  30. * @(#)udp_var.h 8.1 (Berkeley) 6/10/93
  31. */
  32. #ifndef _NETINET_UDP_VAR_H_
  33. #define _NETINET_UDP_VAR_H_
  34. /*
  35. * UDP kernel structures and variables.
  36. */
  37. struct udpiphdr {
  38. struct ipovly ui_i; /* overlaid ip structure */
  39. struct udphdr ui_u; /* udp header */
  40. } __packed;
  41. #define ui_x1 ui_i.ih_x1
  42. #define ui_pr ui_i.ih_pr
  43. #define ui_len ui_i.ih_len
  44. #define ui_src ui_i.ih_src
  45. #define ui_dst ui_i.ih_dst
  46. #define ui_sport ui_u.uh_sport
  47. #define ui_dport ui_u.uh_dport
  48. #define ui_ulen ui_u.uh_ulen
  49. #define ui_sum ui_u.uh_sum
  50. /*
  51. * UDP statistics.
  52. * Each counter is an unsigned 64-bit value.
  53. */
  54. #define UDP_STAT_IPACKETS 0 /* total input packets */
  55. #define UDP_STAT_HDROPS 1 /* packet shorter than header */
  56. #define UDP_STAT_BADSUM 2 /* checksum error */
  57. #define UDP_STAT_BADLEN 3 /* data length larger than packet */
  58. #define UDP_STAT_NOPORT 4 /* no socket on port */
  59. #define UDP_STAT_NOPORTBCAST 5 /* of above, arrived as broadcast */
  60. #define UDP_STAT_FULLSOCK 6 /* not delivered, input socket full */
  61. #define UDP_STAT_PCBHASHMISS 7 /* input packets missing PCB hash */
  62. #define UDP_STAT_OPACKETS 8 /* total output packets */
  63. #define UDP_NSTATS 9
  64. /*
  65. * Names for UDP sysctl objects
  66. */
  67. #define UDPCTL_CHECKSUM 1 /* checksum UDP packets */
  68. #define UDPCTL_SENDSPACE 2 /* default send buffer */
  69. #define UDPCTL_RECVSPACE 3 /* default recv buffer */
  70. #define UDPCTL_LOOPBACKCKSUM 4 /* do UDP checksum on loopback */
  71. #define UDPCTL_STATS 5 /* UDP statistics */
  72. #define UDPCTL_RFC6056 6 /* RFC 6056 algorithm selection */
  73. #define UDPCTL_MAXID 7
  74. #define UDPCTL_NAMES { \
  75. { 0, 0 }, \
  76. { "checksum", CTLTYPE_INT }, \
  77. { "sendspace", CTLTYPE_INT }, \
  78. { "recvspace", CTLTYPE_INT }, \
  79. { "do_loopback_cksum", CTLTYPE_INT }, \
  80. { "stats", CTLTYPE_STRUCT }, \
  81. { "rfc6056", CTLTYPE_INT }, \
  82. }
  83. #ifdef _KERNEL
  84. extern struct inpcbtable udbtable;
  85. void *udp_ctlinput(int, const struct sockaddr *, void *);
  86. int udp_ctloutput(int, struct socket *, struct sockopt *);
  87. void udp_init(void);
  88. void udp_input(struct mbuf *, ...);
  89. int udp_output(struct mbuf *, ...);
  90. int udp_sysctl(int *, u_int, void *, size_t *, void *, size_t);
  91. int udp_usrreq(struct socket *,
  92. int, struct mbuf *, struct mbuf *, struct mbuf *, struct lwp *);
  93. int udp_input_checksum(int af, struct mbuf *, const struct udphdr *, int,
  94. int);
  95. void udp_statinc(u_int);
  96. #endif /* _KERNEL */
  97. #endif /* !_NETINET_UDP_VAR_H_ */