Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-13 | Use the new DIST_LIB/DIST_OBJS hooks to make it possible to link crunched | Philip Guenther | |
binaries against libraries compiled with smaller objects. Determination of which objects to include done by linking once and checking the link map. SRCLIBDIR must be set by the calling makefile to /usr/src/lib for this to have any effect | |||
2013-10-13 | remote bits for a.out and ecoff | Theo de Raadt | |
ok guenther | |||
2013-10-13 | Death to a.out bits! | Philip Guenther | |
ok deraadt@ miod@ | |||
2013-10-11 | improve ntpctl argv parsing | Theo de Raadt | |
2013-10-09 | Trim leading white space from the message before trying to extract | Todd C. Miller | |
the program name. Works around a problem with the ObiHai 202's syslog client (and possibly others) where an extra space is added to the message before the program name. OK krw@ henning@ deraadt@ | |||
2013-10-09 | tweak previous; | Jason McIntyre | |
2013-10-09 | shorten output; ok henning phessler | Theo de Raadt | |
2013-10-09 | Move the (commented out) syslog directive above the error_log lines. | Paul de Weerd | |
Prevents "nginx: [emerg] You must set the syslog directive and enable it first." OK sthen@ and ajacoutot@ | |||
2013-10-09 | Allow us to bulk add / delete routes with the same attributes. Really | Peter Hessler | |
useful for distributing IP lists. OK beck@, claudio@, henning@ | |||
2013-10-07 | Fix a segfault in ndp -A by not freeing the buffer when not in repeat | Jeremie Courreges-Anglas | |
mode. Input from and ok millert@ | |||
2013-10-07 | Allow to specify the "oid" option multiple times, eg. | Reyk Floeter | |
snmpctl walk 127.0.0.1 oid system oid ifName | |||
2013-10-06 | tweak previous; | Jason McIntyre | |
2013-10-04 | Tweak previous: | Ingo Schwarze | |
* For time_t values, use the printf("%lld", (long long)t) idiom. * Don't print "Invalid program name" in usage() when main() just runs ntpd. * Make "Show/Shows" consistent in the manual, sort .Xr and correct .Ox. OK phessler@ | |||
2013-10-04 | Add ntpctl(8), which allows us to query the locally running ntpd(8) process | Peter Hessler | |
diff from Mike Miller <mmiller mgm51 com> (many thanks!) OK phessler@, henning@, todd@ | |||
2013-10-02 | Fix GETBULK mode that got broken with r1.14. | Reyk Floeter | |
ok sthen@ | |||
2013-10-01 | Remove incorret check for bulk walks. | Reyk Floeter | |
2013-10-01 | Add net-snmp's PEN. | Reyk Floeter | |
2013-10-01 | Accept "oid all" for the complete SNMP tree (as an alias to "oid 1.0"). | Reyk Floeter | |
2013-10-01 | Initial support for the "bulkwalk" command. | Reyk Floeter | |
2013-10-01 | Tell strvisx() to encode newlines found in octet-strings to avoid ugly | Reyk Floeter | |
line wraps. | |||
2013-10-01 | Drop privileges when running as root to mitigate the risk. | Reyk Floeter | |
2013-10-01 | zap trailing whitespace; | Jason McIntyre | |
2013-10-01 | Add shorter alias "snmpctl walk". | Reyk Floeter | |
Requested by deraadt@ | |||
2013-10-01 | Reorganize the code a bit to adjust it for an async I/O model. | Reyk Floeter | |
2013-10-01 | better error handling | Reyk Floeter | |
2013-10-01 | add ber_oid_cmp() to the list | Reyk Floeter | |
2013-10-01 | fix typo | Reyk Floeter | |
2013-10-01 | Add initial SNMP client utility to snmpctl(8). | Reyk Floeter | |
For example, snmpctl snmp walk 127.0.0.1 commit it deraadt@ | |||
2013-10-01 | avoid a fd_set overflow by calling a different rpc svc function | Theo de Raadt | |
ok jmatthew millert | |||
2013-10-01 | Add some PENs and sync the declarations. | Reyk Floeter | |
2013-09-29 | purge compat junk related to drand48; ok guenther | Theo de Raadt | |
2013-09-28 | Resolve the uncertainty in the REFID assignment. | Peter Hessler | |
Previously, when there is an even number of offsets, we did the average of the two middle offets but would set the REFID from one of them. Instead, we simply select the middle offset with the lowest delay. diff from Mike Miller <mmiller mgm51 com> (many thanks!) OK phessler@, henning@ | |||
2013-09-27 | typo in macro name; no md5 change | Stuart Henderson | |
2013-09-26 | shuffle some snmpd functions to make them visible in smi.c for snmpctl. | Reyk Floeter | |
ok gerhard@ blambert@ | |||
2013-09-26 | smi is an SNMP term that means "Structure of Managed Information". I | Reyk Floeter | |
thought about renaming the functions to just "snmp", but "smi" totally makes sense. So add a comment that explains the meaning of SMI (not life). | |||
2013-09-24 | missing number | Marc Espie | |
2013-09-22 | merge ldns 1.6.16 | Stuart Henderson | |
2013-09-22 | update to ldns 1.6.16 | Stuart Henderson | |
2013-09-22 | merge unbound 1.4.21 | Stuart Henderson | |
2013-09-22 | file removed in 1.4.21 | Stuart Henderson | |
2013-09-22 | update to Unbound 1.4.21, ok brad@ | Stuart Henderson | |
2012-03-26 | Import ldns 1.6.12, needed for Unbound, to work on in-tree. | Stuart Henderson | |
These are the direct sources from NLnet Labs upstream, minus these: contrib doc/images examples packaging/fedora ok deraadt@ jakob@ | |||
2013-09-20 | Don't assume the length of chap challenges. | YASUOKA Masahiko | |
2013-09-20 | Add length check for Proxy LCP and Authentication AVPs. | YASUOKA Masahiko | |
2013-09-19 | adjust the names to more accurately reflect the names of structs | Bret Lambert | |
and functions as they relate to the FastCGI protocol style(9)ize some function declarations while here ok florian@ | |||
2013-09-13 | fix some gcc warnings | YASUOKA Masahiko | |
2013-09-12 | Misc time_t tweaks. %ld / (long)tv_sec -> %lld / (long long)tv_sec. | Kenneth R Westerback | |
Eliminate unneeded casts. suggestions from & ok millert@ guenther@ | |||
2013-09-11 | pkglocatedb should be installable even if nothing is there... | Marc Espie | |
2013-09-11 | According to ITU X.690 (ASN.1 definition document), "octet strings" | Bret Lambert | |
and derived types are allowed to have 0 content octets, whereas "bitstrings" are required to have at least 1 content octet. Adjust the checks in the trap acceptance code to allow for 0-length "octet strings" in SNMP traps. okay reyk@ | |||
2013-09-11 | Sprinkle some comments which clarify the protocol/process flow. | Bret Lambert | |
ok florian@ |