diff options
author | guy <guy> | 2001-11-28 05:50:05 +0000 |
---|---|---|
committer | guy <guy> | 2001-11-28 05:50:05 +0000 |
commit | 87c019c9e25e3e8456ec0de88b80ca72d4fb8970 (patch) | |
tree | 08eeeb4e51dc0ae873cd121919e24dd83090d9d5 /bpf | |
parent | 4e83ece64ca8595df7bee22178527251b929e410 (diff) |
Reserve link-layer types for Prism II 802.11 chip monitor mode
information plus 802.11 header (as per Tim Newsham's stuff) and for some
flavor of Aironet 802.11 link-layer header (as per Doug Ambrisko's
FreeBSD patches).
Diffstat (limited to 'bpf')
-rw-r--r-- | bpf/net/bpf.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/bpf/net/bpf.h b/bpf/net/bpf.h index 55cd002..3cd1c16 100644 --- a/bpf/net/bpf.h +++ b/bpf/net/bpf.h @@ -37,7 +37,7 @@ * * @(#)bpf.h 7.1 (Berkeley) 5/7/91 * - * @(#) $Header: /tcpdump/master/libpcap/bpf/net/Attic/bpf.h,v 1.50 2001-11-02 08:03:39 guy Exp $ (LBL) + * @(#) $Header: /tcpdump/master/libpcap/bpf/net/Attic/bpf.h,v 1.51 2001-11-28 05:50:05 guy Exp $ (LBL) */ #ifndef BPF_MAJOR_VERSION @@ -302,6 +302,19 @@ struct bpf_hdr { #define DLT_CISCO_IOS 118 /* + * Reserved for 802.11 cards using the Prism II chips, with a link-layer + * header including Prism monitor mode information plus an 802.11 + * header. + */ +#define DLT_PRISM_HEADER 119 + +/* + * Reserved for Aironet 802.11 cards, with an Aironet link-layer header + * (see Doug Ambrisko's FreeBSD patches). + */ +#define DLT_AIRONET_HEADER 120 + +/* * The instruction encodings. */ /* instruction classes */ |