[Net] Rename "ssl" references to "tls" in methods and members.
This commit is contained in:
@ -37,14 +37,14 @@ void HTTPClientWeb::_parse_headers(int p_len, const char **p_headers, void *p_re
|
||||
}
|
||||
}
|
||||
|
||||
Error HTTPClientWeb::connect_to_host(const String &p_host, int p_port, bool p_ssl, bool p_verify_host) {
|
||||
Error HTTPClientWeb::connect_to_host(const String &p_host, int p_port, bool p_tls, bool p_verify_host) {
|
||||
close();
|
||||
if (p_ssl && !p_verify_host) {
|
||||
if (p_tls && !p_verify_host) {
|
||||
WARN_PRINT("Disabling HTTPClientWeb's host verification is not supported for the Web platform, host will be verified");
|
||||
}
|
||||
|
||||
port = p_port;
|
||||
use_tls = p_ssl;
|
||||
use_tls = p_tls;
|
||||
|
||||
host = p_host;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user