summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/if_wi_hostap.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Remove almost unused `flags' argument of suser().mpi2018-02-191-4/+4
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
* No need to include <net/if_arp.h>mpi2015-11-241-2/+1
* The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.mpi2015-11-241-2/+1
* use if_enqueue() rather than doing a poor inline version of it.dlg2015-11-041-13/+2
* move arc4random prototype to systm.h. more appropriate for most codetedu2014-11-181-3/+1
* remove uneeded proc.h includesjsg2014-09-141-2/+1
* Replace all queue *_END macro calls except CIRCLEQ_END with NULL.doug2014-09-131-5/+4
* Fewer <netinet/in_systm.h>mpi2014-07-221-3/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-6/+6
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
* Second pass of simple timeout_add -> timeout_add_sec conversionsblambert2008-10-151-9/+9
* MALLOC -> mallocgilles2007-10-091-6/+5
* Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.krw2007-10-061-4/+4
* MALLOC+bzero -> malloc+M_ZERO.krw2007-10-031-5/+2
* avoid extra inclusions; ok jsgderaadt2006-11-261-3/+2
* always report the channel as type 802.11b (IEEE802_CHAN_B) in thereyk2006-07-011-1/+3
* add some more net80211 compatibility glue:reyk2006-06-271-1/+41
* Fix various printf() issues: too many arguments, not enough arguments, argumentmiod2006-04-201-4/+4
* splimp -> splnetbrad2005-12-031-11/+11
* Move from arpcom to ieee80211com in wi softc. This will bejsg2005-10-311-36/+37
* If we get a vendor private tlv when we are expecting a challenge,millert2005-01-041-1/+5
* replace old net/if_ieee80211.h header with the net80211 ones, kernel part.fgsch2004-11-231-2/+3
* Changes to wihap_auth_req():millert2004-03-151-17/+15
* Make HostAP work Prism cards with newer firmware (1.7.0 and higher).millert2004-03-021-5/+12
* sync with netbsd defines. no functional changes.fgsch2003-09-211-4/+4
* change arguments to suser. suser now takes the process, and a flagstedu2003-08-151-4/+4
* Use 16bit alignment in addr_cmp() (not 32bit) so this has a chancemillert2003-05-161-2/+3
* Increase xfer rates buffer from 8 to 12 bytes. This allows 802.11gmillert2003-02-151-5/+5
* Use a 2-level timeout for hostap. Instead of of sending a stationmillert2003-01-211-37/+96
* Stub out hostap bits #ifdef SMALL_KERNEL to free up space on themillert2003-01-211-1/+40
* In wihap_shutdown() use a broadcast for disassoc and deauth packetsmillert2003-01-141-22/+20
* change WI_PORTTYPE_AP -> WI_PORTTYPE_HOSTAP to match FreeBSD and NetBSD.millert2002-08-131-2/+2
* Handle REASREQ packets earlier when processing an associationmillert2002-06-251-8/+12
* If we receive a packet with our BSSID from an unassociated station,millert2002-06-231-12/+13
* Add some missing casts of sc->wi_txbuf -> caddr_tmillert2002-06-211-13/+16
* a step towards consistancy; in general:todd2002-06-091-35/+35
* Implement shared key support for hostap mode; from Thomas Skibomillert2002-04-261-56/+122
* Clear flags indicating whether or not wi or hostap is active asmillert2002-04-231-3/+2
* Remove bogus casts to int in printf that causes a warning on 64bit arches.millert2002-04-151-5/+4
* o Check supported speeds before examing capabiltiesmillert2002-04-111-16/+24
* two missing splx()smickey2002-04-081-1/+3
* make hostap work on other-endian machines; tested by drahn@mickey2002-04-081-10/+13
* Don't reset COR in wi_reset(), break it out into its own function andmillert2002-04-071-2/+2
* freem mbuf on input pkt check failuremickey2002-04-011-1/+4
* killed a char accidentallymickey2002-04-011-2/+2
* need to splsoftclock here too, i think i've got 'em all nowmickey2002-04-011-2/+6
* kill lots of space and insert some more for knfmickey2002-03-301-87/+87
* i_nwid is not a NUL-terminated string, it is length bounded.millert2002-03-291-5/+5
* put the protos and spls in placemickey2002-03-281-21/+58