summaryrefslogtreecommitdiff
path: root/sys/dev/ic/if_wi_hostap.h
AgeCommit message (Collapse)Author
2003-01-21Use a 2-level timeout for hostap. Instead of of sending a stationTodd C. Miller
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
2002-12-30proper HOSTAP_FLAGS_BITS; from merith@vantronix.netMichael Shalayeff
2002-06-08kill __PTodd C. Miller
2002-04-26Implement shared key support for hostap mode; from Thomas SkiboTodd C. Miller
Also do a little KNF while I'm in here.
2002-04-08restore what was a default inactivity timeout, two minutesMichael Shalayeff
2002-03-30kill lots of space and insert some more for knfMichael Shalayeff
2002-03-28some BITS defs for %bMichael Shalayeff
2002-03-28basic host-ap implementation, more work is needed; from Thomas Skibo ↵Michael Shalayeff
<skibo@pacbell.net>; millert@ ok