diff options
author | denny <denny@cvs.openbsd.org> | 1997-07-23 02:59:03 +0000 |
---|---|---|
committer | denny <denny@cvs.openbsd.org> | 1997-07-23 02:59:03 +0000 |
commit | 47bc1a39c8cd804b6ceb8356dcfbd54e55d5f65d (patch) | |
tree | 141498fed41f459c754682ece773b3ab0d62e8cf /usr.sbin/tcpdump/appletalk.h | |
parent | 3bee95fea8a62e43f33a07f5aad7bc3a854d1410 (diff) |
Better handling for AppleTalk, and netatalk in particular.
Handle native Ethertalk phase 1 & 2 as well as the localtalk encapsulation a la Kinetics FastPath previously handled.
Diffstat (limited to 'usr.sbin/tcpdump/appletalk.h')
-rw-r--r-- | usr.sbin/tcpdump/appletalk.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/tcpdump/appletalk.h b/usr.sbin/tcpdump/appletalk.h index 8bf5f668144..c8ab4224f3f 100644 --- a/usr.sbin/tcpdump/appletalk.h +++ b/usr.sbin/tcpdump/appletalk.h @@ -20,7 +20,7 @@ * * AppleTalk protocol formats (courtesy Bill Croft of Stanford/SUMEX). * - * @(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/appletalk.h,v 1.5 1996/12/12 16:22:59 bitblt Exp $ (LBL) + * @(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/appletalk.h,v 1.6 1997/07/23 02:59:00 denny Exp $ (LBL) */ struct LAP { @@ -121,6 +121,12 @@ struct atNBPtuple { #define nbpBrRq 0x10 #define nbpLkUp 0x20 #define nbpLkUpReply 0x30 +#define nbpFwd 0x40 +/* The following are not standard, but netatalk uses them. */ +#define nbpNATLKrgstr 0xc0 +#define nbpNATLKunrgstr 0xd0 +#define nbpNATLKok 0xe0 +#define nbpNATLKerr 0xf0 #define nbpNIS 2 #define nbpTupleMax 15 |