Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TLS HTTP Client
Adds SSL/TLS support to the HTTP client, enabling HTTPS requests for both synchronous and asynchronous APIs.
Changes
include/glaze/net/http_client.hppsocket_variant(std::variantof TCP and SSL socket types) to support both plain and TLS connections throughout the clientssl_errorenum withstd::error_codeintegration for SSL-specific error reporting (e.g.,ssl_not_supported,sni_hostname_failed)detail::socket_is_openanddetail::close_sockethelpers that operate on the socket variant, with optional graceful SSL shutdown (sendsclose_notifyalert)http_connection_poolwith SSL context management,is_httpsconnection key discrimination, and thread-safe SSL context access (std::shared_mutexfor reader/writer locking)set_ssl_verify_mode,configure_ssl_context,set_graceful_ssl_shutdownGLZ_ENABLE_SSLtests/networking_tests/http_client_ssl_test/(new)tests/networking_tests/CMakeLists.txtglaze_BUILD_SSL_TESTSoption (default ON) to control inclusion ofhttp_client_ssl_testandhttps_testsubdirectories