Deleted Added
full compact
snoop.h (24583) snoop.h (26119)
1/*
1/*
2 * (C)opyright 1993,1994,1995 by Darren Reed.
2 * (C)opyright 1993-1997 by Darren Reed.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
7 */
8
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
7 */
8
9#ifndef __SNOOP_H__
10#define __SNOOP_H__
11
9/*
10 * written to comply with the RFC (1761) from Sun.
12/*
13 * written to comply with the RFC (1761) from Sun.
11 * $Id: snoop.h,v 2.0.2.2 1997/02/23 10:38:19 darrenr Exp $
14 * $Id: snoop.h,v 2.0.2.4 1997/04/30 13:49:52 darrenr Exp $
12 */
13struct snoophdr {
14 char s_id[8];
15 int s_v;
16 int s_type;
17};
18
19#define SNOOP_VERSION 2

--- 15 unchanged lines hidden (view full) ---

35struct snooppkt {
36 int sp_olen;
37 int sp_ilen;
38 int sp_plen;
39 int sp_drop;
40 int sp_sec;
41 int sp_usec;
42};
15 */
16struct snoophdr {
17 char s_id[8];
18 int s_v;
19 int s_type;
20};
21
22#define SNOOP_VERSION 2

--- 15 unchanged lines hidden (view full) ---

38struct snooppkt {
39 int sp_olen;
40 int sp_ilen;
41 int sp_plen;
42 int sp_drop;
43 int sp_sec;
44 int sp_usec;
45};
46
47#endif /* __SNOOP_H__ */