PERFORCE change 80695 for review

Sam Leffler sam at FreeBSD.org
Thu Jul 21 19:51:31 GMT 2005


http://perforce.freebsd.org/chv.cgi?CH=80695

Change 80695 by sam at sam_ebb on 2005/07/21 19:51:10

	correct min data frame size check; fragmented frames may not
	include an 802.3 header so the previous size caused some
	frames to be discarded

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211_crypto.c#13 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211_crypto.c#13 (text+ko) ====

@@ -543,7 +543,7 @@
 {
 #define	IEEE80211_WEP_HDRLEN	(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN)
 #define	IEEE80211_WEP_MINLEN \
-	(sizeof(struct ieee80211_frame) + ETHER_HDR_LEN + \
+	(sizeof(struct ieee80211_frame) + \
 	IEEE80211_WEP_HDRLEN + IEEE80211_WEP_CRCLEN)
 	struct ieee80211_key *k;
 	struct ieee80211_frame *wh;


More information about the p4-projects mailing list