]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curlinfo: add "ssl-sessions" as a feature to show
authorDaniel Stenberg <daniel@haxx.se>
Wed, 19 Nov 2025 07:30:49 +0000 (08:30 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 19 Nov 2025 11:58:24 +0000 (12:58 +0100)
To allow tests depend on it

src/curlinfo.c

index da75a45876cfc025c79ac1d302c9f5b557a78c54..852aee820161c32b97ee2411f11d818ab14958c0 100644 (file)
@@ -235,6 +235,13 @@ static const char *disabled[]={
   "ON"
 #else
   "OFF"
+#endif
+  ,
+  "ssl-sessions: "
+#ifdef USE_SSLS_EXPORT
+  "ON"
+#else
+  "OFF"
 #endif
 };