From: Daniel McCarney Date: Sat, 12 Jul 2025 00:41:39 +0000 (-0400) Subject: docs: note SSLS-EXPORT feature in -ssl-sessions doc X-Git-Tag: curl-8_15_0~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b234da49b6d1b2d14e2f1e8a66b64bfc219dcacc;p=thirdparty%2Fcurl.git docs: note SSLS-EXPORT feature in -ssl-sessions doc Without a libcurl built with the SSLS-EXPORT feature this command line option produces: curl: option --ssl-sessions: the installed libcurl version does not support this curl: try 'curl --help' or 'curl --manual' for more information Add a note of warning on the -ssl-session docs page to account for this. Closes #17909 --- diff --git a/docs/cmdline-opts/ssl-sessions.md b/docs/cmdline-opts/ssl-sessions.md index 054492b41f..bb1e251e73 100644 --- a/docs/cmdline-opts/ssl-sessions.md +++ b/docs/cmdline-opts/ssl-sessions.md @@ -33,3 +33,6 @@ The SSL session tickets are stored as base64 encoded text, each ticket on its own line. The hostnames are cryptographically salted and hashed. While this prevents someone from easily seeing the hosts you contacted, they could still check if a specific hostname matches one of the values. + +This feature requires that the underlying libcurl was built with the +experimental SSL session import/export feature (SSLS-EXPORT) enabled.