Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Oct 2003 12:32:37 -0700 (PDT)
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 39852 for review
Message-ID:  <200310171932.h9HJWbpS028066@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=39852

Change 39852 by sam@sam_ebb on 2003/10/17 12:31:52

	indicate device receives all management frames

Affected files ...

.. //depot/projects/netperf/sys/dev/ath/if_ath.c#24 edit

Differences ...

==== //depot/projects/netperf/sys/dev/ath/if_ath.c#24 (text+ko) ====

@@ -278,8 +278,12 @@
 	/* XXX not right but it's not used anywhere important */
 	ic->ic_phytype = IEEE80211_T_OFDM;
 	ic->ic_opmode = IEEE80211_M_STA;
-	ic->ic_caps = IEEE80211_C_WEP | IEEE80211_C_IBSS | IEEE80211_C_HOSTAP
-		| IEEE80211_C_MONITOR | IEEE80211_C_SHPREAMBLE;
+	ic->ic_caps = IEEE80211_C_WEP		/* wep supported */
+		| IEEE80211_C_IBSS		/* ibss, nee adhoc, mode */
+		| IEEE80211_C_HOSTAP		/* hostap mode */
+		| IEEE80211_C_MONITOR		/* monitor mode */
+		| IEEE80211_C_SHPREAMBLE	/* short preamble supported */
+		| IEEE80211_C_RCVMGT;		/* recv management frames */
 
 	/* get mac address from hardware */
 	ath_hal_getmac(ah, ic->ic_myaddr);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200310171932.h9HJWbpS028066>