home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / detk45he.zip / stack16 / netinet / udp.h < prev   
Text File  |  1999-05-11  |  2KB  |  41 lines

  1.  
  2. /********************************************************copyrite.xmc***/
  3. /*                                                                     */
  4. /*   Licensed Materials - Property of IBM                              */
  5. /*                                                                     */
  6. /*   This module is "Restricted Materials of IBM":                     */
  7. /*   (C) Copyright IBM Corporation. 1990, 1991.                        */
  8. /*                                                                     */
  9. /*   See IBM Copyright Instructions.                                   */
  10. /*                                                                     */
  11. /********************************************************copyrite.xmc***/
  12. /*
  13.  * Copyright (c) 1982, 1986 Regents of the University of California.
  14.  * All rights reserved.
  15.  *
  16.  * Redistribution and use in source and binary forms are permitted
  17.  * provided that this notice is preserved and that due credit is given
  18.  * to the University of California at Berkeley. The name of the University
  19.  * may not be used to endorse or promote products derived from this
  20.  * software without specific prior written permission. This software
  21.  * is provided ``as is'' without express or implied warranty.
  22.  *
  23.  *      @(#)udp.h       7.4.1.1 (Berkeley) 2/7/88
  24.  */
  25. #ifndef _UDP
  26. #define _UDP
  27.  
  28.  
  29. #pragma pack(1)
  30.  
  31. struct  udpstat {
  32.       u_long    udps_hdrops;
  33.       u_long    udps_badsum;
  34.       u_long    udps_badlen;
  35.       u_long    udps_udpInDatagrams;
  36.       u_long    udps_udpNoPorts;
  37.       u_long    udps_udpOutDatagrams;
  38. };
  39. #pragma pack()
  40. #endif
  41.