mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http: Disable SSLv2 support for HTTPS connections
This commit is contained in:
parent
375e615103
commit
0c46e400af
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ function request(u, ex, callback)
|
|||
|
||||
local sslctx = false;
|
||||
if using_https then
|
||||
sslctx = ex and ex.sslctx or { mode = "client", protocol = "sslv23" };
|
||||
sslctx = ex and ex.sslctx or { mode = "client", protocol = "sslv23", options = { "no_sslv2" } };
|
||||
end
|
||||
|
||||
req.handler, req.conn = server.wrapclient(conn, req.host, port, listener, "*a", sslctx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue