summaryrefslogtreecommitdiff
path: root/usr.sbin/hostapd
AgeCommit message (Collapse)Author
2006-05-26\<char> is <char> except for \<newline> -- no exceptions. much like howTheo de Raadt
other things work. ok henning
2006-05-16.Sx for section references;Jason McIntyre
2006-05-15mention the lack of authenticated management frames in IEEE 802.11.Reyk Floeter
2006-05-15initial implementation of "IP Roaming" in hostapd, see hostapd.conf(5).Reyk Floeter
ok dlg@
2006-05-15make lint happyReyk Floeter
2006-05-13set the correct timezone using tzset() before before writing to syslog.Reyk Floeter
thanks to Bruno Carnazzi
2006-03-10some IAPP implementations still use the pre-standard port 2313 in broadcastReyk Floeter
mode (tested with the HP ProCurve 420wl). add a note to the manual page and the example configuration.
2006-02-25fix for hostapd_printf() from Andrey Matveev:Reyk Floeter
---snip--- We allocate some memory with va_start() for storage variable arguments in dynamic mode. va_end() takes care about clearing this memory. Therefore we should be sure, that to each va_start() there corresponds va_end() call. And on error path too. ---snap---
2006-01-31fix a bug by updating the bpf packet header for each received frame inReyk Floeter
the capture buffer. to alex 'pukpuk' at gmx.de
2005-12-29add an 'include' rule to hostapd.conf(5); based on an older diff fromReyk Floeter
dhartmei@ for the parser. this is useful if you have many hostapd systems using the same configuration but individual local definitions (like macros or table entries).
2005-12-18Update my e-mail address in the copyright statement, no binary changes.Reyk Floeter
2005-12-10tweak: ok reykJason McIntyre
2005-12-10add an option to increase the multicast ttl which is currently limitedReyk Floeter
to 1 hop. by using a higher multicast ttl, you could use inter-network multicast forwarding of hostapd messages (i.e. with mrouted(8) or multicast-capable routing switches); "set iapp mode multicast ttl 2".
2005-12-10make lint more happyReyk Floeter
2005-12-01tweaks;Jason McIntyre
2005-12-01typoTheo de Raadt
2005-12-01add configuration option to enable/disable specified iapp subtype handlingReyk Floeter
2005-12-01support netmasks in table entry ip address assignmentsReyk Floeter
2005-12-01move iapp configuration in a separate data structureReyk Floeter
2005-12-01deauthenticate all stations on startup which will force them toReyk Floeter
reassociate cleanly.
2005-11-23log message consistencyReyk Floeter
2005-11-23add optional interface rule for event rulesReyk Floeter
2005-11-20add support for multiple hostap (wireless) interfaces.Reyk Floeter
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
2005-11-17remove the BNF grammar definition from the manual page. it's getting aReyk Floeter
pain to maintain this (have a look at parse.y for some BNF). theo was right...
2005-11-16add a configuration option for specifying a non-standard port and multicastReyk Floeter
address for the IAPP messages. this is an initial approach to run multiple hostapds on one machine, further work will be done later.
2005-10-15use some -ohang list types, for purely cosmetic reasons;Jason McIntyre
ok reyk@
2005-10-11fix "node add"Reyk Floeter
2005-10-07move IAPP definitions to separate header fileReyk Floeter
2005-10-07spacingReyk Floeter
2005-10-05the correct mask sign in table declarations is '&' (not '/').Reyk Floeter
2005-09-30rewording for clarity;Jason McIntyre
ok reyk@
2005-09-30correct way to display a backslash is `\e' in mdoc;Jason McIntyre
grammar + spelling;
2005-09-30update the BNFReyk Floeter
2005-09-30implement a way to match IEEE 802.11 flooding. this will help to detectReyk Floeter
known DoS attacks, like de-auth flooding against wireless networks. an example is provided in the manual page. "or could you just got for it?", deraadt@
2005-09-30fix;5C the 'number' type, use a maximal value of LONG_MAX instead of 16.Reyk Floeter
2005-09-29Add event rule examplesReyk Floeter
2005-09-29order alphabeticallyReyk Floeter
2005-09-13use memcmp instead of bcmp to compare tree nodes.Reyk Floeter
2005-09-12preserve backslash using `\e', not `\\';Jason McIntyre
2005-09-10fix small typo found by Benedikt SteinbuschReyk Floeter
2005-09-09replace hasch tables with red-black trees used by the node tables.Reyk Floeter
ok mcbride@
2005-08-17add newlines in hostapd_fatal() calls, fix some typos.Reyk Floeter
thanks to Brian Poole.
2005-07-30enable -WboundedReyk Floeter
ok anil
2005-07-30flush print buffer on empty newlinesReyk Floeter
2005-07-04whitespace;Jason McIntyre
2005-07-04spacingTheo de Raadt
2005-07-04nicer textTheo de Raadt
2005-07-04describe the difference between radiotap and pcap modeReyk Floeter
2005-07-04update the hostapd.conf(5) manual page with a more detailed descriptionReyk Floeter
of the configuration language and grammar. thanks to jmc@ and jaredy@
2005-07-04remove command line options -i, -a and -b (iapp interface, hostap interfaceReyk Floeter
and broadcast mode). please use the configuration file hostapd.conf(5) instead, it is now mandatory to run hostapd with it.