diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-08 09:20:19 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-08 09:20:19 +0200 |
commit | a51dc70dfb7ca57f7ce7f0d764c12044405158b2 (patch) | |
tree | 9d272067bb78a68fb81cf8c91a62177d6e9eb68a /core/io/http_client_tcp.h | |
parent | cdb121dffaa0486da8894b7e8d0a2f595f382be4 (diff) | |
parent | a95d7924204c26b5ff64a82c24579a8cdf58dac2 (diff) | |
download | redot-engine-a51dc70dfb7ca57f7ce7f0d764c12044405158b2.tar.gz |
Merge pull request #65460 from Faless/net/4.x_ssl_to_tls_more
[Net] Rename "ssl" references to "tls" in methods and members.
Diffstat (limited to 'core/io/http_client_tcp.h')
-rw-r--r-- | core/io/http_client_tcp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/io/http_client_tcp.h b/core/io/http_client_tcp.h index c10e0b1eca..744c15f7ab 100644 --- a/core/io/http_client_tcp.h +++ b/core/io/http_client_tcp.h @@ -46,8 +46,8 @@ private: String http_proxy_host; int https_proxy_port = -1; // Proxy server for https requests. String https_proxy_host; - bool ssl = false; - bool ssl_verify_host = false; + bool tls = false; + bool tls_verify_host = false; bool blocking = false; bool handshaking = false; bool head_request = false; @@ -79,7 +79,7 @@ public: Error request(Method p_method, const String &p_url, const Vector<String> &p_headers, const uint8_t *p_body, int p_body_size) override; - Error connect_to_host(const String &p_host, int p_port = -1, bool p_ssl = false, bool p_verify_host = true) override; + Error connect_to_host(const String &p_host, int p_port = -1, bool p_tls = false, bool p_verify_host = true) override; void set_connection(const Ref<StreamPeer> &p_connection) override; Ref<StreamPeer> get_connection() const override; void close() override; |