Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-01 | Add encoding.c to the various build targets | Claudio Jeker | |
2021-04-01 | Change search-again with vi keys to work like actual vi(1), also some | Nicholas Marriott | |
other fixes. From Aaron Jensen with help from Anindya Mukherjee. | |||
2021-04-01 | Move base64 and hex encoding functions into their own place. | Claudio Jeker | |
OK tb@ | |||
2021-04-01 | Missing commas, from Vipul Kumar. | Nicholas Marriott | |
2021-03-31 | Use new limits@openssh.com protocol extension to let the client select | Damien Miller | |
good limits based on what the server supports. Split the download and upload buffer sizes to allow them to be chosen independently. In practice (and assuming upgraded sftp/sftp-server at each end), this increases the download buffer 32->64KiB and the upload buffer 32->255KiB. Patches from Mike Frysinger; ok dtucker@ | |||
2021-03-31 | cannot effectively test posix-rename extension after changes in | Damien Miller | |
feature advertisment. | |||
2021-03-31 | do not advertise protocol extensions that have been disallowed by | Damien Miller | |
the command-line options (e.g. -p/-P/-R); ok dtucker@ | |||
2021-03-31 | Set 'select_timeout' to 'now' when an OFFER is received for the IP address | Kenneth R Westerback | |
requested in the DISCOVER. i.e. immediately accept the OFFER rather than waiting for select_timeout to expire before accepting the same OFFER. A corner case since select-timeout is 0 by default. | |||
2021-03-31 | Add two missing checks for strdup() returning NULL. | Kenneth R Westerback | |
2021-03-31 | one of the examples needs an -N (and explanation); | Jason McIntyre | |
diff from robert scheck discussed with and tweaked by sthen | |||
2021-03-31 | add --no-motd to SYNOPSIS; | Jason McIntyre | |
2021-03-31 | Add option to suppress the Message of the Day | job | |
Fine deraadt@ | |||
2021-03-31 | tweak column widths of a .Bl -column table | Ingo Schwarze | |
and avoid an over-long source line while here; OK martijn@ jmc@ | |||
2021-03-31 | turn log_trace() into a macro to prevent evaluating the format string | Eric Faurot | |
parameters when tracing is not enabled. ok millert@ | |||
2021-03-31 | Update for DTLSv1.2 support. | Theo Buehler | |
2021-03-31 | allow to specify tls protocols and ciphers on relay actions | Eric Faurot | |
ok espie@ sthen@ tb@ | |||
2021-03-31 | change the barrier so that fd's are always passed and received with | Eric Faurot | |
the first byte of the imsg they belong to. idea, tweaks and ok claudio@ | |||
2021-03-31 | Remove workarounds for SSL_is_dtls() | Theo Buehler | |
Reminded by inoguchi jsing | |||
2021-03-31 | Remove workaround for missing d2i_DSAPrivateKey_fp prototype | Theo Buehler | |
2021-03-31 | sync | Theo Buehler | |
2021-03-31 | Bump minors after symbol addition | Theo Buehler | |
2021-03-31 | Expose various DTLSv1.2 specific functions and defines | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Document SSL_set_hostflags(3) and SSL_get0_peername(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Expose SSL_set_hostflags(3) and SSL_get0_peername(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Document SSL_use_certificate_chain_file(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Expose SSL_use_certificate_chain_file(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Provide missing prototype for d2i_DSAPrivateKey_fp(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Document EVP_PKEY_new_CMAC_key(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Provide EVP_PKEY_new_CMAC_key(3) | Theo Buehler | |
ok bcook inoguchi jsing | |||
2021-03-31 | Set the process title for the rpki-client subprocesses so they can be | Claudio Jeker | |
identified more easily. OK deraadt@ | |||
2021-03-31 | Fix some debug output when running in foreground. | Kenneth R Westerback | |
Call tick_msg() at startup so it knows if the link is up. Don't emit 'link timeout expired' messages after the link has been up. | |||
2021-03-31 | Make ddb's dependency on libz explicit. | Visa Hankala | |
OK deraadt@ mpi@ | |||
2021-03-31 | sync | Stuart Henderson | |
2021-03-31 | Remove redundant "HUAWEI Mobile" in usbdevs strings, mention radio | Stuart Henderson | |
technology where known. ok deraadt | |||
2021-03-31 | Introduce UAO_USES_SWHASH() and use tabs instead of spaces in #defines. | Martin Pieuchot | |
No functionnal change, reduce the difference with NetBSD. ok jmatthew@ | |||
2021-03-31 | Do not exit if cannot write to normal log file, GitHub issue 2630. | Nicholas Marriott | |
2021-03-31 | document trusted_snapshot | Marc Espie | |
2021-03-30 | fix typos in comments | Stuart Henderson | |
2021-03-30 | In HTML output, correctly render .Bd -unfilled in proportionally-spaced | Ingo Schwarze | |
font, rather than with the monospace font appropriate for .Bd -literal. This fixes a minibug reported by anton@. Implemented by no longer relying on the typical browser default of "pre { font-family: monospace }" but instead letting <pre> elements inherit the font family from their parent, then adding an explicit CSS .Li class only for those displays where the manual page author requested it by using the -literal option on the .Bd macro. | |||
2021-03-30 | Handle systems, such as the Dell Precision 3640, that access | Mark Kettenis | |
GenericSerialBus operating regions witout checking whether they're really available. This needs to work on RAMDISK kernels as well. Since we don't want to pull in the i2c subsystem on those, provide a separate and much simpler dummy implementation of the GenericSerialBus access code when SMALL_KERNEL is defined. ok tb@ | |||
2021-03-30 | Register the PCI variant of dwiic(4) with acpi(4). | Mark Kettenis | |
ok tb@ | |||
2021-03-30 | Make http_new() take care of all the error handling. By closing the | Claudio Jeker | |
outfd and sending back the failure report via http_fail(). This was partially done in the failure case of http_resolv() and resulted in double failure reports in that case. With and OK tb@, previous version OK deraadt@ | |||
2021-03-30 | Some cards announce support for the NTB16 format, but that support does not | Patrick Wildt | |
work. Hence, add support for NTB32 in the transmit path. We already have support for NTB32 in the receive path. We detect the supported format on boot and can then decide on transmit which format to use. From ehrhardt@ with gerhard@ Tested by jan@ ok sthen@ | |||
2021-03-30 | Some umb(4) devices require the NDP pointer behind the NDP datagram. | Patrick Wildt | |
From gerhard@ "broadly OK" sthen@ | |||
2021-03-30 | [ICMP] IP options lead to malformed reply | Alexandr Nedvedicky | |
icmp_send() must update IP header length if IP optaions are appended. Such packet also has to be dispatched with IP_RAWOUTPUT flags. Bug reported and fix co-designed by Dominik Schreilechner _at_ siemens _dot_ com OK bluhm@ | |||
2021-03-30 | Move tx/rx descriptors into their own structs. | Kevin Lo | |
This is a first step toward making rge work with multiple queues and interrupts. Only one queue is currently used. While here, update the RTL8125B microcode. ok jmatthew@ | |||
2021-03-29 | Propagate host-side tap(4) lladdr to guest vm process to allow unicast dhcp | dv | |
and bootp renewals with vmd(8)'s built-in dhcp server. Previous behavior ignored did not intercept these packets and instead transmitted them. This should make vmd(8)'s dhcp behave more as a true dhcp server should and allows it to work properly with the new dhcpleased(8) attempting a renewal. OK mlarkin@ | |||
2021-03-29 | Install apm(8) and and apmd(8) under MI MANPATH | kn | |
powerpc64 was lacking manual pages; instead of shipping yet another identical MD manual, merge them under MI MANPATH as usual. Input OK deraadt | |||
2021-03-29 | whitespace nits | Theo Buehler | |
2021-03-29 | Prepare documenting EVP_PKEY_new_CMAC_key(3) | Theo Buehler | |
Based on some text in OpenSSL 1.1.1's EVP_PKEY_new.pod. |