diff options
Diffstat (limited to 'usr.sbin/ipftest/snoop.h')
-rw-r--r-- | usr.sbin/ipftest/snoop.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/usr.sbin/ipftest/snoop.h b/usr.sbin/ipftest/snoop.h deleted file mode 100644 index cbed990015c..00000000000 --- a/usr.sbin/ipftest/snoop.h +++ /dev/null @@ -1,49 +0,0 @@ -/* $OpenBSD: snoop.h,v 1.10 2001/01/17 06:01:23 fgsch Exp $ */ - -/* - * Copyright (C) 1993-2000 by Darren Reed. - * - * Redistribution and use in source and binary forms are permitted - * provided that this notice is preserved and due credit is given - * to the original author and the contributors. - */ - -#ifndef __SNOOP_H__ -#define __SNOOP_H__ - -/* - * written to comply with the RFC (1761) from Sun. - * $IPFilter: snoop.h,v 2.2 2000/03/13 22:10:27 darrenr Exp $ - */ -struct snoophdr { - char s_id[8]; - int s_v; - int s_type; -}; - -#define SNOOP_VERSION 2 - -#define SDL_8023 0 -#define SDL_8024 1 -#define SDL_8025 2 -#define SDL_8026 3 -#define SDL_ETHER 4 -#define SDL_HDLC 5 -#define SDL_CHSYNC 6 -#define SDL_IBMCC 7 -#define SDL_FDDI 8 -#define SDL_OTHER 9 - -#define SDL_MAX 9 - - -struct snooppkt { - int sp_olen; - int sp_ilen; - int sp_plen; - int sp_drop; - int sp_sec; - int sp_usec; -}; - -#endif /* __SNOOP_H__ */ |