From: Felix Fietkau Date: Sun, 16 Sep 2012 05:40:00 +0000 (-0700) Subject: hostapd: Send EAPOL frames from the VO queue if WMM is active X-Git-Tag: hostap_2_0~216 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92d521d89cfe8ae6f5a85da5b0eaa284f3447ec6;p=thirdparty%2Fhostap.git hostapd: Send EAPOL frames from the VO queue if WMM is active This avoids extra latency caused by establishing an aggregation session and makes the initial connection attempt more reliable Signed-hostap: Felix Fietkau --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 6779877fb..66389da9a 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -6392,8 +6392,8 @@ static int wpa_driver_nl80211_hapd_send_eapol( pos = (u8 *) (hdr + 1); if (qos) { - /* add an empty QoS header if needed */ - pos[0] = 0; + /* Set highest priority in QoS header */ + pos[0] = 7; pos[1] = 0; pos += 2; }