From: Pavel Roskin Date: Wed, 28 Mar 2007 13:43:49 +0000 (-0400) Subject: ip: add support for displaying link types 802 and 803 X-Git-Tag: v2.6.23-071016~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc537c259d444219172a158704a3abb2e4a378c4;p=thirdparty%2Fiproute2.git ip: add support for displaying link types 802 and 803 802 is 802.11 with prism headers. 803 is 802.11 with radiotap headers. Signed-off-by: Pavel Roskin Signed-off-by: Stephen Hemminger --- diff --git a/lib/ll_types.c b/lib/ll_types.c index 5b0f106dc..d47dee7d2 100644 --- a/lib/ll_types.c +++ b/lib/ll_types.c @@ -118,6 +118,12 @@ __PF(IEEE802_TR,tr) #ifdef ARPHRD_IEEE80211 __PF(IEEE80211,ieee802.11) #endif +#ifdef ARPHRD_IEEE80211_PRISM +__PF(IEEE80211_PRISM,ieee802.11/prism) +#endif +#ifdef ARPHRD_IEEE80211_RADIOTAP +__PF(IEEE80211_RADIOTAP,ieee802.11/radiotap) +#endif #ifdef ARPHRD_VOID __PF(VOID,void) #endif