History log of /openbsd-current/sys/dev/ic/if_wi_hostap.h
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE
# 1.10 24-Aug-2014 zhuk

Fix wrong IEEE 802.11 ioctl's:

* SIOCG80211ALLNODES operates on struct ieee80211_nodereq_all, not
struct ieee80211_nodereq.

* Six SIOC* from wi(4) were using same codes with generic parts of
IEEE 802.11 framework. Things worked due to the fact that size
of data struct being passed is encoded in actual SIOC*, too.

This commit means that ifconfig and some ports will need to be rebuilt,
if any of affected SIOC* codes is used. Port bumps to follow.

First part okay reyk@, whole diff okay mpi@
Heavy prodding to commit now from deraadt@


Revision tags: OPENBSD_3_5_BASE OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE OPENBSD_3_9_BASE OPENBSD_4_0_BASE OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE OPENBSD_4_4_BASE OPENBSD_4_5_BASE OPENBSD_4_6_BASE OPENBSD_4_7_BASE OPENBSD_4_8_BASE OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE OPENBSD_5_2_BASE OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE OPENBSD_5_6_BASE SMP_SYNC_A SMP_SYNC_B
# 1.9 21-Oct-2003 jmc

typos from Tom Cosgrove;

Tom: I did not commit a couple of your changes.

i did not include some punctuation fixes (full stops, etc.)
mnemorable -> mnemonic: i decided memorable was probably better
instrunctions -> instruction: i kept the plural


Revision tags: OPENBSD_3_3_BASE OPENBSD_3_4_BASE UBC_SYNC_A
# 1.8 21-Jan-2003 millert

branches: 1.8.4;
Use a 2-level timeout for hostap. Instead of of sending a station
a deauth/disassoc packet when the inactivity timer fires, just set
a flag, re-queue it and set the master wihap timer if needed. What
this does is to effectively bundle (and serialize) deauth/disassoc
packets so if a large number need to be sent at once we don't stomp
all over the card. We also only do at most 10 stations at a time.
The sta_list has been changed from a doubly linked list to a tailq.
Inactive stations are kept at the head of the queue, new ones are
added to the tail.

Idea and OK by mickey@, prompted by an issue found by
merith AT vantronix DOT net


# 1.7 30-Dec-2002 mickey

proper HOSTAP_FLAGS_BITS; from merith@vantronix.net


Revision tags: OPENBSD_3_2_BASE UBC_SYNC_B
# 1.6 08-Jun-2002 millert

branches: 1.6.2;
kill __P


# 1.5 26-Apr-2002 millert

Implement shared key support for hostap mode; from Thomas Skibo
Also do a little KNF while I'm in here.


Revision tags: OPENBSD_3_1_BASE
# 1.4 08-Apr-2002 mickey

restore what was a default inactivity timeout, two minutes


# 1.3 30-Mar-2002 mickey

kill lots of space and insert some more for knf


# 1.2 28-Mar-2002 mickey

some BITS defs for %b


# 1.1 28-Mar-2002 mickey

basic host-ap implementation, more work is needed; from Thomas Skibo <skibo@pacbell.net>; millert@ ok