summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/reallocarray.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-02-08change discipline name from "RAID1C" to "RAID 1C" to match the man pagesstsp1-2/+2
2021-02-08add RAID 1C to the list of supported softraid(4) disciplinesstsp1-2/+14
2021-02-08Remove maxburst feature from tcp_outputjan2-6/+3
OK bluhm@, claudio@, deraadt@
2021-02-08syncderaadt1-0/+1
2021-02-08Make bioctl properly verify raidlevels specified via the -c option.stsp1-1/+3
Trailing characters in the option argument were ignored, such that -cC1 (typo of -c1C) was interpreted as -cC instead of being rejected. ok jsing@
2021-02-08Update DTLS client hello due to ECC changes.jsing1-5/+8
2021-02-08Remove bogus DTLS checks to disable ECC and OCSP.jsing2-10/+3
ECC and OCSP can be used with DTLS, so remove bogus checks that currently prevent it. These are long lasting remnants from the original OpenSSL code. ok tb@
2021-02-08Enforce read ahead with DTLS.jsing1-5/+5
DTLS is largely broken/useless without read ahead being enabled, so enforce it for DTLS. This behaviour matches both our documentation and OpenSSL. ok tb@
2021-02-08Use dtls1_retrieve_buffered_record() to load buffered application data.jsing1-11/+3
Replace the current copy of dtls1_retrieve_buffered_record() with a call to it instead. ok tb@