diff options
author | Kim Alvefur <zash@zash.se> | 2017-02-25 02:15:15 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-02-25 02:15:15 +0100 |
commit | c99a49ae0284e06e194d680553942156498a41bd (patch) | |
tree | 490fe6ce78c50d0ff13923b794d6e1f141ec9af5 /plugins | |
parent | 217ecf012aff5f1b451a06ac47f8f7631949848b (diff) | |
download | prosody-c99a49ae0284e06e194d680553942156498a41bd.tar.gz prosody-c99a49ae0284e06e194d680553942156498a41bd.zip |
mod_websocket: Set connections starttls method to false to prevent mod_tls from offering starttls (fixes #837)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_websocket.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua index c19ad566..47d170a1 100644 --- a/plugins/mod_websocket.lua +++ b/plugins/mod_websocket.lua @@ -136,6 +136,8 @@ function handle_request(event) local request, response = event.request, event.response; local conn = response.conn; + conn.starttls = false; -- Prevent mod_tls from believing starttls can be done + if not request.headers.sec_websocket_key then response.headers.content_type = "text/html"; return [[<!DOCTYPE html><html><head><title>Websocket</title></head><body> |