summaryrefslogtreecommitdiff
path: root/t/ssl_settings.t
Commit message (Collapse)AuthorAgeFilesLines
* Find perl via /usr/bin/env instead of directlyDavid CARLIER2022-08-251-1/+1
| | | | | At least FreeBSD has perl in /usr/local/bin/perl and no symlink by default.
* tls: Add switch to opt-in to kernel TLS on OpenSSL 3.0.0+Kevin Lin2022-07-031-0/+1
|
* Configurable minimum supported TLS protocol versionKevin Lin2021-09-271-1/+2
| | | | | | | `-o ssl_min_version` can be used to configure the server to only accept handshakes from clients with a minimum TLS protocol version. Currently supported options are TLS v1.0, TLS v1.1, TLS v1.2, and TLS v1.3 (OpenSSL 1.1.1+ only).
* Add: `-o ssl_session_cache`, disabled by defaultKevin Lin2020-03-271-0/+1
| | | | Enables server-side TLS session caching.
* Basic implementation of TLS for memcached.1.5.13Tharanga Gamaethige2019-04-151-0/+36
Most of the work done by Tharanga. Some commits squashed in by dormando. Also reviewed by dormando. Tested, working, but experimental implementation of TLS for memcached. Enable with ./configure --enable-tls Requires OpenSSL 1.1.0 or better. See `memcached -h` output for usage.