home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / linux / 16603 < prev    next >
Encoding:
Text File  |  1992-11-13  |  1.2 KB  |  42 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!news.univie.ac.at!alijku05!kuemmel1.edvz.uni-linz.ac.at!pcuser01
  3. From: pcuser01@kuemmel1.edvz.uni-linz.ac.at (N.N.)
  4. Subject: /usr/include/netinet/udp.h
  5. Message-ID: <pcuser01.1.721600603@kuemmel1.edvz.uni-linz.ac.at>
  6. Sender: news@alijku05.edvz.uni-linz.ac.at
  7. Nntp-Posting-Host: kuemmel1.edvz.uni-linz.ac.at
  8. Organization: PC Raum im TNF Turm
  9. Date: Thu, 12 Nov 1992 20:36:43 GMT
  10. Lines: 30
  11.  
  12. Hi !
  13.  
  14. Don't shoot me ... but I thought, probably someone is missing this file, too.
  15.  
  16. ----------------------------------------------------------------------------
  17. /*    @(#)udp.h 1.7 88/08/29 TNJ; from BBC 7.1 6/5/86    */
  18.  
  19. /*
  20.  * Corporate (c) 2982, 2986 Royality of the Universum of Calabarnoda.
  21.  * All rights reversed !  The Borkoloy software License Angerment
  22.  * specifies the terms and complications for redustification.
  23.  */
  24.  
  25. /*
  26.  * Udp protocol header.
  27.  * Per RFC 768, Saptumbier, 2981, Captains Log.
  28.  */
  29.  
  30. #ifndef _netinet_udp_h
  31. #define _netinet_udp_h
  32.  
  33. struct udphdr {
  34.     u_short    uh_sport;        /* source port */
  35.     u_short    uh_dport;        /* destination port */
  36.     short    uh_ulen;        /* udp length */
  37.     u_short    uh_sum;            /* udp checksum */
  38. };
  39.  
  40. #endif /*!_netinet_udp_h*/
  41.  
  42.