summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2024-11-27 14:58:09 +0100
committerGitHub <noreply@github.com>2024-11-27 14:58:09 +0100
commit5a5d7537a2bda2bfca4b89d217c0835bc6d74396 (patch)
tree2779ea0a6be9f2c9c2d23d8cb89a52ba0e3905ae
parent5d7d620903a2fb40f8cd3140081bfb7ceaf125d5 (diff)
parent8de299308c52d083b893a87e6924405b652f1f7b (diff)
downloadmonitoring-plugins-5a5d7537a2bda2bfca4b89d217c0835bc6d74396.tar.gz
Merge pull request #2050 from RincewindsHat/fix/ssl_version_documentation
check_curl: update TLS notification notes, mention deprecation of TLSv1.0 and TLSv1.1
-rw-r--r--plugins/check_curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 8ea73ce1..ef7d4ee4 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -1912,7 +1912,7 @@ void print_help(void) {
1912 printf(" %s\n", _("Connect via SSL. Port defaults to 443. VERSION is optional, and prevents")); 1912 printf(" %s\n", _("Connect via SSL. Port defaults to 443. VERSION is optional, and prevents"));
1913 printf(" %s\n", _("auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1,")); 1913 printf(" %s\n", _("auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1,"));
1914 printf(" %s\n", _("1.2 = TLSv1.2, 1.3 = TLSv1.3). With a '+' suffix, newer versions are also accepted.")); 1914 printf(" %s\n", _("1.2 = TLSv1.2, 1.3 = TLSv1.3). With a '+' suffix, newer versions are also accepted."));
1915 printf(" %s\n", _("Note: SSLv2 and SSLv3 are deprecated and are usually disabled in libcurl")); 1915 printf(" %s\n", _("Note: SSLv2, SSLv3, TLSv1.0 and TLSv1.1 are deprecated and are usually disabled in libcurl"));
1916 printf(" %s\n", "--sni"); 1916 printf(" %s\n", "--sni");
1917 printf(" %s\n", _("Enable SSL/TLS hostname extension support (SNI)")); 1917 printf(" %s\n", _("Enable SSL/TLS hostname extension support (SNI)"));
1918# if LIBCURL_VERSION_NUM >= 0x071801 1918# if LIBCURL_VERSION_NUM >= 0x071801