Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-13 | in all these programs using the same pfctl-derived parse.y, re-unify the | Theo de Raadt | |
yylex implementation and the code which interacts with yylex. this also brings the future potential for include support to all of the parsers. in the future please do not silly modifications to one of these files without checking if you are de-unifying the code. checked by developers in all these areas. | |||
2007-10-11 | next step in the yylex unification: handle quoted strings in a nicer fashion | Theo de Raadt | |
as found in hoststated, and make all the code diff as clean as possible. a few issues remain mostly surrounding include support, which will likely be added to more of the grammers soon. ok norby pyr, others | |||
2007-09-12 | Add NUMBER support for signed and unsigned 64bit numbers to the lexer | Reyk Floeter | |
instead of passing numbers as STRINGs. Add careful range checks whenever NUMBERs are used in the grammar. From deraadt@ (except the specific range checks) | |||
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-02 | Use event(3) provided signal functions -- this decouples the event | Claudio Jeker | |
handling and so the signal handlers are safe to call whatever they want. This solves PR5463. OK reyk@ | |||
2007-02-09 | unbreak the symset function | Reyk Floeter | |
2007-02-08 | carefully check some return values and make lint happy. check for | Reyk Floeter | |
truncation before feeding strings into the kernel. | |||
2006-12-31 | add a channel hopper for wireless interfaces. the channel hopper will | Reyk Floeter | |
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@ | |||
2006-11-13 | properly use LDADD and DPADD | Theo de Raadt | |
2006-10-13 | check error condition of strtonum | Reyk Floeter | |
2006-09-28 | hostapd tree search speedup via inlined compare function | Reyk Floeter | |
suggested by Mike Belopuhov (mkb at crypt dot org dot ru) | |||
2006-09-28 | fix the configuration parser for event rules: correct handling of | Reyk Floeter | |
multiple matches of the 'not' grammar rule and correct 'lladdr' address matching. figured out by Stephen Lewis (stephen at sock dot org dot uk), thanks! | |||
2006-08-31 | knock out the cpp/m4 stuff from MACROS; after discussion with many... | Jason McIntyre | |
2006-06-27 | add new event rules to match optional elements of radiotap headers: | Reyk Floeter | |
signal percentage, transmit rate and channel frequency. ok and hints by jsg@ jmc@ | |||
2006-06-26 | fix printing of the RSSI radiotap element: use the PRINTF wrapper | Reyk Floeter | |
around hostapd_log instead of the printf function | |||
2006-06-23 | set the RSSI Max value in ath(4) and use the new RSSI radiotap header | Reyk Floeter | |
instead of the old db signal header. also allow tcpdump and hostapd to print the new RSSI radiotap header values current/max rssi. ok damien@ jsg@ | |||
2006-06-01 | don't use the newline character in hostapd_log() calls | Reyk Floeter | |
2006-05-26 | \<char> is <char> except for \<newline> -- no exceptions. much like how | Theo de Raadt | |
other things work. ok henning | |||
2006-05-16 | .Sx for section references; | Jason McIntyre | |
2006-05-15 | mention the lack of authenticated management frames in IEEE 802.11. | Reyk Floeter | |
2006-05-15 | initial implementation of "IP Roaming" in hostapd, see hostapd.conf(5). | Reyk Floeter | |
ok dlg@ | |||
2006-05-15 | make lint happy | Reyk Floeter | |
2006-05-13 | set the correct timezone using tzset() before before writing to syslog. | Reyk Floeter | |
thanks to Bruno Carnazzi | |||
2006-03-10 | some IAPP implementations still use the pre-standard port 2313 in broadcast | Reyk Floeter | |
mode (tested with the HP ProCurve 420wl). add a note to the manual page and the example configuration. | |||
2006-02-25 | fix 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-31 | fix a bug by updating the bpf packet header for each received frame in | Reyk Floeter | |
the capture buffer. to alex 'pukpuk' at gmx.de | |||
2005-12-29 | add an 'include' rule to hostapd.conf(5); based on an older diff from | Reyk 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-18 | Update my e-mail address in the copyright statement, no binary changes. | Reyk Floeter | |
2005-12-10 | tweak: ok reyk | Jason McIntyre | |
2005-12-10 | add an option to increase the multicast ttl which is currently limited | Reyk 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-10 | make lint more happy | Reyk Floeter | |
2005-12-01 | tweaks; | Jason McIntyre | |
2005-12-01 | typo | Theo de Raadt | |
2005-12-01 | add configuration option to enable/disable specified iapp subtype handling | Reyk Floeter | |
2005-12-01 | support netmasks in table entry ip address assignments | Reyk Floeter | |
2005-12-01 | move iapp configuration in a separate data structure | Reyk Floeter | |
2005-12-01 | deauthenticate all stations on startup which will force them to | Reyk Floeter | |
reassociate cleanly. | |||
2005-11-23 | log message consistency | Reyk Floeter | |
2005-11-23 | add optional interface rule for event rules | Reyk Floeter | |
2005-11-20 | add 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-17 | remove the BNF grammar definition from the manual page. it's getting a | Reyk Floeter | |
pain to maintain this (have a look at parse.y for some BNF). theo was right... | |||
2005-11-16 | add a configuration option for specifying a non-standard port and multicast | Reyk 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-15 | use some -ohang list types, for purely cosmetic reasons; | Jason McIntyre | |
ok reyk@ | |||
2005-10-11 | fix "node add" | Reyk Floeter | |
2005-10-07 | move IAPP definitions to separate header file | Reyk Floeter | |
2005-10-07 | spacing | Reyk Floeter | |
2005-10-05 | the correct mask sign in table declarations is '&' (not '/'). | Reyk Floeter | |
2005-09-30 | rewording for clarity; | Jason McIntyre | |
ok reyk@ | |||
2005-09-30 | correct way to display a backslash is `\e' in mdoc; | Jason McIntyre | |
grammar + spelling; | |||
2005-09-30 | update the BNF | Reyk Floeter | |