summaryrefslogtreecommitdiffstats
path: root/usr.sbin/hostapd/apme.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Delete superfluous #includes of <ifaddrs.h>, <net/if_dl.h>, and <net/if_enc.h>guenther2019-05-101-2/+1
| | | | ok krw@, jsg@
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-3/+3
| | | | | | | | | possible. Annotate <sys/param.h> lines with their current reasons. Switch to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where sensible to avoid pulling in the pollution. These are the files confirmed through binary verification. ok guenther, millert, doug (helped with the verification protocol)
* carefully check some return values and make lint happy. check forreyk2007-02-081-13/+19
| | | | truncation before feeding strings into the kernel.
* add a channel hopper for wireless interfaces. the channel hopper willreyk2006-12-311-1/+77
| | | | | | | | jump to the next available channel after a configurable delay for the specified list of wireless "hostap" interfaces, see the new "set hostap hopper" commands in hostapd.conf(5). with help by jsg@
* don't use the newline character in hostapd_log() callsreyk2006-06-011-6/+6
|
* initial implementation of "IP Roaming" in hostapd, see hostapd.conf(5).reyk2006-05-151-1/+11
| | | | ok dlg@
* fix a bug by updating the bpf packet header for each received frame inreyk2006-01-311-2/+3
| | | | | | the capture buffer. to alex 'pukpuk' at gmx.de
* Update my e-mail address in the copyright statement, no binary changes.reyk2005-12-181-2/+2
|
* make lint more happyreyk2005-12-101-2/+2
|
* move iapp configuration in a separate data structurereyk2005-12-011-6/+8
|
* deauthenticate all stations on startup which will force them toreyk2005-12-011-1/+33
| | | | reassociate cleanly.
* add support for multiple hostap (wireless) interfaces.reyk2005-11-201-34/+99
| | | | | | | for example, if you run one hostapd with two ath(4) devices. you have to specify "set hostap interface { ath0, ath1 }" in hostapd.conf(5). man page bits by jmc@, tested by others
* move IAPP definitions to separate header filereyk2005-10-071-1/+2
|
* first step to implement a proactive wireless monitoring system usingreyk2005-06-171-8/+112
| | | | | | | | | | | | | | | | | hostapd(8). it's a very simple but powerful approach using highly flexible and stateless event and action rules for IEEE 802.11 traffic. you can monitor a wireless network by watching frames with types and addresses (with support for tables and masks) and you can trigger actions like writing log messages, sending pcap/radiotap dumps to the IAPP network, removing nodes from the hostap, resending received frames and sending contructed 802.11 frames in reply to traffic received from any rogue nodes. it's based on some initial work from the c2k5 which has been tested and improved during the last weeks. some missing documentation for hostapd.conf(5) will be written as soon as possible. ok deraadt@
* spacesderaadt2005-04-131-2/+2
|
* KNFhenning2005-04-131-3/+3
|
* add the initial version of the OpenBSD hostapd daemonreyk2005-04-131-0/+168
ok deraadt@