home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1893 / ntrace.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  238 b   |  16 lines

  1. /*
  2.  * ntrace.h
  3.  *
  4.  * Defines format of network trace buffer
  5.  *
  6.  */
  7.  
  8. struct NetTrace {
  9.     struct timeval    nt_timestamp;
  10.     struct in_addr    nt_srcaddr;
  11.     struct in_addr    nt_dstaddr;
  12.     u_short        nt_srcport;
  13.     u_short        nt_dstport;
  14.     u_char        nt_proto;
  15. };
  16.