Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-30 | Delete unnecessary <libgen.h> #includes | Philip Guenther | |
ok deraadt@ | |||
2018-11-01 | - odd condition/test in PF lexer | Alexandr Nedvedicky | |
(and other lexers too) This commit rectifies earlier change: in the lex... even inside quotes, a \ followed by space or tab should expand to space or tab, and a \ followed by newline should be ignored (as a line continuation). compatible with the needs of hoststated (which has the most strict quoted string requirements), and ifstated (where one commonly does line continuations in strings). OK deraadt@, OK millert@ | |||
2018-07-25 | Fix the prefix length of the IP address in the error message which shows | YASUOKA Masahiko | |
failure of assigning requested IP address on IPCP, it was mistakenly "-1" on little endians. Found by IIJ. | |||
2018-07-09 | No need to mention which memory allocation entry point failed (malloc, | Kenneth R Westerback | |
calloc or strdup), we just need to log that we ran out of memory in a particular function. Recommended by florian@ and deraadt@ ok benno@ henning@ tb@ | |||
2018-07-08 | Be consistent in warn() and log_warn() usage when | Kenneth R Westerback | |
running out of memory. Next step, be correct *and* consistent. ok dennis@ tb@ benno@ schwarze@ | |||
2018-06-18 | remove the SECTIONS header, since a one line DESCRIPTION is a bit silly; | Jason McIntyre | |
use a more general text for the sections, and avoid the catchup issue that was trying to document how many there were; ok benno rob | |||
2018-03-16 | Consistently spell "IPsec" in comments and debug outputs. | Martin Pieuchot | |
From Raf Czlonka, ok sthen@ | |||
2018-01-05 | Remove useless <sys/socketvar.h> includes. | Martin Pieuchot | |
ok kettenis@, visa@, claudio@, deraadt@ | |||
2017-10-06 | The problem when npppd receives a zero length 1701/udp packet seemed to | YASUOKA Masahiko | |
be fixed at 1.16, but it wasn't fixed. Fix it again. | |||
2017-08-12 | add a new option to set limits on max-sessions each IPCP. | Kazuya Goda | |
It can set limits on different max-sessions if there're using several protocols such as PPPoE and L2TP/IPsec. ok yasuoka@ | |||
2017-08-11 | add a new option to set limits on user-max-sessions each AUTHENTICATION. | Kazuya Goda | |
It can set limits on different user-max-sessions if there're using several protocols such as PPPoE and L2TP/IPsec. ok yasuoka@ | |||
2017-08-11 | display MRU each sessions in npppctl session command | Kazuya Goda | |
ok yasuoka@ | |||
2017-07-13 | man pages with pseudo synopses which list filenames end up creating | Jason McIntyre | |
very ugly output in man -k; after some discussion with ingo, we feel the simplest fix is to remove such SYNOPSIS sections: the info is hardly helpful at page top, is contained already in FILES, and there are sufficiently few that just zapping them is simple; ok schwarze, who also helpfully ran things through a build to check output; | |||
2017-07-03 | no need to generate y.tab.h if nothing uses it, set YFLAGS to nothing | Marc Espie | |
instead of CLEANFILES += y.tab.h okay millert@ | |||
2017-05-30 | Remove never used ifdefs, define FATAL macro properly and define function | YASUOKA Masahiko | |
parameters in modern way. | |||
2017-05-30 | Stop using __P macro. | YASUOKA Masahiko | |
2017-04-19 | Switch base tools from /dev/bpf0 to /dev/bpf. Now that /dev/bpf has been | Martin Natano | |
around for two releases, it should be safe to do so. ok bluhm deraadt sthen tb yasuoka | |||
2017-04-18 | Warn if pipex(4) is disabled but the configuration uses it. | YASUOKA Masahiko | |
2017-04-18 | Delete #include lines which are unnecessary. | YASUOKA Masahiko | |
2017-03-21 | From a syslog perspective it does not make sense to log fatal and | Alexander Bluhm | |
warn with the same severity. Switch log_warn() to LOG_ERR and keep fatal() at LOG_CRIT. OK reyk@ florian@ | |||
2017-02-22 | The default for the strip-nt-domain attribute is "yes", so fix up | Patrick Wildt | |
the manpage to not tell lies. ok yasuoka@ | |||
2017-02-22 | Delete lines which are misleading and unneeded. | YASUOKA Masahiko | |
spotted patrick | |||
2017-02-21 | Stop using "DEBUG" make variable for extra debugs. | YASUOKA Masahiko | |
2017-01-09 | Replace hand-rolled for(;;) traversal of ctl_conns TAILQ with | Kenneth R Westerback | |
TAILQ_FOREACH(). No intentional functional change. ok reyk@ | |||
2016-09-21 | Remove the use of cast. It is unnecessary and potentially problematic. | YASUOKA Masahiko | |
input semarie ok deraadt | |||
2016-09-07 | Fix about the default value of pptp-hostname. It's an empty string. | YASUOKA Masahiko | |
Reported by Joe Holden. | |||
2016-05-28 | Replace the /dev/bpf* open loop with a plain open("/dev/bpf0", ...). | Martin Natano | |
ok deraadt jca | |||
2016-05-26 | Improve and clarify a few bits; with input from jmc@, ok yasuoka, jmc | Mike Belopuhov | |
2016-04-16 | Change last non-/gnu/ fcntl(x, F_GETFL, 0) strays to fcntl(x, F_GETFL). | Kenneth R Westerback | |
No functional change. ok millert@ | |||
2016-04-05 | Move more fcntl(,F_GETFL,0) -> fcntl(,F_GETFL). | Kenneth R Westerback | |
No functional change. ok guenther@ | |||
2016-03-22 | Log the reply message from RADIUS server when the authenticaion fails. | YASUOKA Masahiko | |
Diff from Yuuichi Someya | |||
2016-03-22 | Cleanup control sockets in control_cleanup(). | YASUOKA Masahiko | |
Diff from Yuuichi Someya. | |||
2016-03-22 | Use SOCK_NONBLOCK in socket() and accept4() instead of a separate fcntl() | Kenneth R Westerback | |
dance. Inspired by guenther@ ok millert@ yasuoka@ | |||
2016-03-21 | Instead of creating a socket with socket() or accept() and then | Philip Guenther | |
setting the O_NONBLOCK flag on it with fcntl(F_SETFL) afterwards, just pass SOCK_NONBLOCK to socket() or accept4() and get it right to begin with. ok millert@ krw@ beck@ deraadt@ jca@ | |||
2016-03-16 | More "(<blah> *)0" -> NULL, avoiding any stdarg functions. | Kenneth R Westerback | |
Feedback millert@ kettenis@ | |||
2016-03-16 | Fix a typo in comment. Diff from Yuuichi Someya. | YASUOKA Masahiko | |
2016-03-16 | Transition to "Req-Sent" had been missing when RTA in "Opened". This caused | YASUOKA Masahiko | |
a timer event leak. Diff from Yuuichi Someya. | |||
2016-03-08 | Fix: "authconf.users_file_path" is a char[] but is checked as a char*. | YASUOKA Masahiko | |
Diff from Mathieu Papineau (via Claer) | |||
2016-03-08 | Remove __cplusplus include guard. | YASUOKA Masahiko | |
Diff from Tiago Silva | |||
2016-02-02 | Remove setproctitle() for the parent process. Because rc.d(8) uses process | Stuart Henderson | |
titles (including flags) to distinguish between daemons, this makes it possible to manage multiple copies of a daemon using the normal infrastructure by symlinking rc.d scripts to a new name. ok jung@ ajacoutot@, smtpd ok gilles@ | |||
2015-12-17 | s/failes/failed/g | mmcc | |
2015-12-17 | Replace 'arc4random() % (2^k - 1)' by 'arc4random() & (2^k - 1)' to | tb | |
avoid modulo bias. Part of a diff by Matthew Martin, reviewed by deraadt@ and me. ok deraadt@ | |||
2015-12-17 | Add missing $OpenBSD$ tags. | tb | |
2015-12-17 | Replace arc4random() % i by arc4random_uniform(i) to avoid modulo bias. | tb | |
Part of a diff by Matthew Martin, reviewed by deraadt@ and me. ok deraadt@ | |||
2015-12-05 | strings.h -> string.h to prevent an implicit declaration. Also remove a | mmcc | |
bunch of NULL-checks before free(). | |||
2015-12-05 | Pass the pppx_hdr when sending packets through the pppx device and use the | YASUOKA Masahiko | |
ppp_id in the pppx_hdr to find the associated ppp when receiving the packets from the device. | |||
2015-12-05 | EAGAIN handling for imsg_read. OK henning@ benno@ | Claudio Jeker | |
2015-12-04 | Fix typo in #include line. | YASUOKA Masahiko | |
2015-12-04 | Remove files which had been unused. | YASUOKA Masahiko | |
2015-12-02 | comment typo | mmcc | |