Updated EWF http_network, websocket, httpd to use the latest EiffelNet SSL

version.
This commit is contained in:
jvelilla
2017-06-21 18:34:07 -03:00
parent c7ef652322
commit 5c31905427
4 changed files with 11 additions and 25 deletions

View File

@@ -26,9 +26,7 @@ feature -- Factory
create l_secure.make_client_by_port (a_port, a_host)
Result := l_secure
if attached secure_protocol as l_prot then
if l_prot.is_case_insensitive_equal ("ssl_2_3") then
l_secure.set_secure_protocol_to_ssl_2_or_3
elseif l_prot.is_case_insensitive_equal ("tls_1_0") then
if l_prot.is_case_insensitive_equal ("tls_1_0") then
l_secure.set_secure_protocol_to_tls_1_0
elseif l_prot.is_case_insensitive_equal ("tls_1_1") then
l_secure.set_secure_protocol_to_tls_1_1