summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/if_wi_hostap.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix wrong IEEE 802.11 ioctl's:zhuk2014-08-241-7/+7
| | | | | | | | | | | | | | | * 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@
* typos from Tom Cosgrove;jmc2003-10-211-2/+2
| | | | | | | | 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
* Use a 2-level timeout for hostap. Instead of of sending a stationmillert2003-01-211-3/+5
| | | | | | | | | | | | | | 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
* proper HOSTAP_FLAGS_BITS; from merith@vantronix.netmickey2002-12-301-2/+2
|
* kill __Pmillert2002-06-081-10/+7
|
* Implement shared key support for hostap mode; from Thomas Skibomillert2002-04-261-1/+2
| | | | Also do a little KNF while I'm in here.
* restore what was a default inactivity timeout, two minutesmickey2002-04-081-3/+2
|
* kill lots of space and insert some more for knfmickey2002-03-301-7/+7
|
* some BITS defs for %bmickey2002-03-281-1/+2
|
* basic host-ap implementation, more work is needed; from Thomas Skibo <skibo@pacbell.net>; millert@ okmickey2002-03-281-0/+137