From 01bf4a62fc91974624f334c5b23478ddd3b44e31 Mon Sep 17 00:00:00 2001 From: bol-van Date: Tue, 25 Jun 2024 10:14:01 +0300 Subject: [PATCH] blockcheck: BoringSSL supports tlsmax --- blockcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockcheck.sh b/blockcheck.sh index 7f6d1ea..ddf7d7e 100755 --- a/blockcheck.sh +++ b/blockcheck.sh @@ -494,7 +494,7 @@ curl_supports_tls13() curl_supports_tlsmax() { # supported only in OpenSSL and LibreSSL - curl --version | grep -Fq -e OpenSSL -e LibreSSL -e GnuTLS -e quictls || return 1 + curl --version | grep -Fq -e OpenSSL -e LibreSSL -e BoringSSL -e GnuTLS -e quictls || return 1 # supported since curl 7.54 curl --tls-max 1.2 -Is -o /dev/null --max-time 1 http://127.0.0.1:65535 2>/dev/null # return code 2 = init failed. likely bad command line options