File tree 2 files changed +4
-8
lines changed
src/aws-cpp-sdk-core/source/http/curl
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,10 @@ if (LEGACY_BUILD)
80
80
if (DISABLE_INTERNAL_IMDSV1_CALLS)
81
81
add_definitions (-DDISABLE_IMDSV1)
82
82
endif ()
83
- if (USE_TLS_V2 )
83
+ if (USE_TLS_V1_2 )
84
84
add_definitions (-DENFORCE_TLS_V1_2)
85
85
endif ()
86
- if (USE_TLS_V3 )
86
+ if (USE_TLS_V1_3 )
87
87
add_definitions (-DENFORCE_TLS_V1_3)
88
88
endif ()
89
89
Original file line number Diff line number Diff line change @@ -699,17 +699,13 @@ std::shared_ptr<HttpResponse> CurlHttpClient::MakeRequest(const std::shared_ptr<
699
699
curl_easy_setopt (connectionHandle, CURLOPT_SSL_VERIFYPEER, 1L );
700
700
curl_easy_setopt (connectionHandle, CURLOPT_SSL_VERIFYHOST, 2L );
701
701
702
- #if LIBCURL_VERSION_MAJOR >= 7
703
- #if LIBCURL_VERSION_MINOR >= 34
704
- #if defined(ENFORCE_TLS_V1_3)
702
+ #if defined(ENFORCE_TLS_V1_3) && LIBCURL_VERSION_NUM >= 0x073400 // 7.52.0
705
703
curl_easy_setopt (connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_3);
706
- #elif defined(ENFORCE_TLS_V1_2)
704
+ #elif defined(ENFORCE_TLS_V1_2) && LIBCURL_VERSION_NUM >= 0x072200 // 7.34.0
707
705
curl_easy_setopt (connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2);
708
706
#else
709
707
curl_easy_setopt (connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
710
708
#endif
711
- #endif // LIBCURL_VERSION_MINOR
712
- #endif // LIBCURL_VERSION_MAJOR
713
709
}
714
710
else
715
711
{
You can’t perform that action at this time.
0 commit comments