PERFORCE change 66034 for review

Sam Leffler sam at FreeBSD.org
Mon Nov 29 08:10:33 PST 2004


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

Change 66034 by sam at sam_ebb on 2004/11/29 16:09:52

	only set the tx timer when sending a probe request in station mode

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211_output.c#15 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211_output.c#15 (text+ko) ====

@@ -960,7 +960,8 @@
 		m->m_pkthdr.len = m->m_len = frm - mtod(m, u_int8_t *);
 
 		IEEE80211_NODE_STAT(ni, tx_probereq);
-		timer = IEEE80211_TRANS_WAIT;
+		if (ic->ic_opmode == IEEE80211_M_STA)
+			timer = IEEE80211_TRANS_WAIT;
 		break;
 
 	case IEEE80211_FC0_SUBTYPE_PROBE_RESP:


More information about the p4-projects mailing list