CVSROOT: /cvs Module name: src Changes by: patr...@cvs.openbsd.org 2018/11/20 03:00:15
Modified files: sys/net80211 : ieee80211_node.c Log message: The first packet received from each AP in each QoS class would be dropped as the sequence number matches the initial value of the cached last sequence number (zero). On some APs (notably Android WIFI hotspots) this hits the first packet of the WPA2 4-way handshake. This causes connection delays and in some cases connection to the AP fails completely. Initialize the cached last sequence numbers for received packets to an invalid value instead. >From Christian Ehrhardt ok gerhard@ stsp@