diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2000-10-19 16:31:43 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2000-10-19 16:31:43 +0000 |
commit | 3df9bf117b870db00290081b9d6e7459701b4a56 (patch) | |
tree | ff43d19907b3c769075276e6fca49b9a0ec5da75 /usr.sbin/tcpdump/interface.h | |
parent | e750cbc68f80ac6c26d23dcb8cadc442231288c4 (diff) |
code for printing bridge spanning tree packets
also fix a bug where llc encoded frames are hex dumped twice when -x is used
Diffstat (limited to 'usr.sbin/tcpdump/interface.h')
-rw-r--r-- | usr.sbin/tcpdump/interface.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/interface.h b/usr.sbin/tcpdump/interface.h index a3d432bb11f..faff4f3c59c 100644 --- a/usr.sbin/tcpdump/interface.h +++ b/usr.sbin/tcpdump/interface.h @@ -1,4 +1,4 @@ -/* $OpenBSD: interface.h,v 1.17 2000/10/03 14:21:56 ho Exp $ */ +/* $OpenBSD: interface.h,v 1.18 2000/10/19 16:31:42 jason Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 @@ -20,7 +20,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/interface.h,v 1.17 2000/10/03 14:21:56 ho Exp $ (LBL) + * @(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/interface.h,v 1.18 2000/10/19 16:31:42 jason Exp $ (LBL) */ #ifndef tcpdump_interface_h @@ -223,6 +223,7 @@ extern void wb_print(const void *, u_int); extern void isakmp_print(const u_char *, u_int); extern void ah_print(const u_char *, u_int, const u_char *); extern void esp_print(const u_char *, u_int, const u_char *); +extern void stp_print(const u_char *, u_int); extern void radius_print(const u_char *, u_int); #ifdef INET6 |