udp_var.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* udp_var.h - UDP kernel structure and variable header file */
  2. /* Copyright 1984-1996 Wind River Systems, Inc. */
  3. /*
  4.  * Copyright (c) 1982, 1986, 1989, 1993
  5.  * The Regents of the University of California.  All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  *    notice, this list of conditions and the following disclaimer in the
  14.  *    documentation and/or other materials provided with the distribution.
  15.  * 3. All advertising materials mentioning features or use of this software
  16.  *    must display the following acknowledgement:
  17.  * This product includes software developed by the University of
  18.  * California, Berkeley and its contributors.
  19.  * 4. Neither the name of the University nor the names of its contributors
  20.  *    may be used to endorse or promote products derived from this software
  21.  *    without specific prior written permission.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  *
  35.  * @(#)udp_var.h 8.1 (Berkeley) 6/10/93
  36.  */
  37. /*
  38. modification history
  39. --------------------
  40. 01a,03mar96,vin  created from BSD4.4 stuff,integrated with 02j.
  41. */
  42. #ifndef __INCudp_varh
  43. #define __INCudp_varh
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. /* includes */
  48. #include "net/mbuf.h"
  49. #include "netinet/in_pcb.h"
  50. #if ((CPU_FAMILY==I960) && (defined __GNUC__))
  51. #pragma align 1                 /* tell gcc960 not to optimize alignments */
  52. #endif /* CPU_FAMILY==I960 */
  53. /* UDP kernel structures and variables. */
  54. struct udpiphdr
  55.     {
  56.     struct  ipovly ui_i; /* overlaid ip structure */
  57.     struct udphdr ui_u; /* udp header */
  58.     };
  59. #define ui_next ui_i.ih_next
  60. #define ui_prev ui_i.ih_prev
  61. #define ui_x1 ui_i.ih_x1
  62. #define ui_pr ui_i.ih_pr
  63. #define ui_len ui_i.ih_len
  64. #define ui_src ui_i.ih_src
  65. #define ui_dst ui_i.ih_dst
  66. #define ui_sport ui_u.uh_sport
  67. #define ui_dport ui_u.uh_dport
  68. #define ui_ulen ui_u.uh_ulen
  69. #define ui_sum ui_u.uh_sum
  70. struct udpstat {
  71. /* input statistics: */
  72. u_long udps_ipackets; /* total input packets */
  73. u_long udps_hdrops; /* packet shorter than header */
  74. u_long udps_badsum; /* checksum error */
  75. u_long udps_badlen; /* data length larger than packet */
  76. u_long udps_noport; /* no socket on port */
  77. u_long udps_noportbcast; /* of above, arrived as broadcast */
  78. u_long udps_fullsock; /* not delivered, input socket full */
  79. u_long udpps_pcbcachemiss; /* input packets missing pcb cache */
  80.         u_long  udpps_pcbhashmiss;      /* input packets not for hashed pcb */
  81. /* output statistics: */
  82. u_long udps_opackets; /* total output packets */
  83. };
  84. #if ((CPU_FAMILY==I960) && (defined __GNUC__))
  85. #pragma align 0                 /* turn off alignment requirement */
  86. #endif /* CPU_FAMILY==I960 */
  87. extern long udpNoPorts; /* MIB-II support. Counts # of packstes drop */
  88. #define UDP_TTL 30 /* default time to live for UDP packets */
  89. /*
  90.  * Names for UDP sysctl objects
  91.  */
  92. #define UDPCTL_CHECKSUM 1 /* checksum UDP packets */
  93. #define UDPCTL_MAXID 2
  94. #define UDPCTL_NAMES { 
  95. { 0, 0 }, 
  96. { "checksum", CTLTYPE_INT }, 
  97. void  udp_ctlinput (int, struct sockaddr *, struct ip *);
  98. void  udp_init (void);
  99. void  udp_input (struct mbuf *, int);
  100. int  udp_output (struct inpcb *,
  101.     struct mbuf *, struct mbuf *, struct mbuf *);
  102. int  udp_sysctl (int *, u_int, void *, size_t *, void *, size_t);
  103. int  udp_usrreq (struct socket *,
  104.     int, struct mbuf *, struct mbuf *, struct mbuf *);
  105. #ifdef __cplusplus
  106. }
  107. #endif
  108. #endif /* __INCudp_varh */