aboutsummaryrefslogtreecommitdiffstats
path: root/net/http.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-10-26 20:57:06 +0100
committerKim Alvefur <zash@zash.se>2014-10-26 20:57:06 +0100
commit8f2d2b9bea483c6a4cf1324af6306d60ae8d91b9 (patch)
treec65d04b1647b92c2b09d1697a9c61d39485c1b09 /net/http.lua
parent58138b1fd556ab505da50b7d33632cccfc9d5606 (diff)
parentf5913a9c3d442038e7146df18d5b3914b2d07175 (diff)
downloadprosody-8f2d2b9bea483c6a4cf1324af6306d60ae8d91b9.tar.gz
prosody-8f2d2b9bea483c6a4cf1324af6306d60ae8d91b9.zip
Merge 0.9->0.10
Diffstat (limited to 'net/http.lua')
-rw-r--r--net/http.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua
index 0c0ef967..e6bf0018 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -175,7 +175,7 @@ function request(u, ex, callback)
local sslctx = false;
if using_https then
- sslctx = ex and ex.sslctx or { mode = "client", protocol = "sslv23", options = { "no_sslv2" } };
+ sslctx = ex and ex.sslctx or { mode = "client", protocol = "sslv23", options = { "no_sslv2", "no_sslv3" } };
end
req.handler, req.conn = assert(server.wrapclient(conn, host, port_number, listener, "*a", sslctx));