aboutsummaryrefslogtreecommitdiffstats
path: root/net/websocket.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-11 00:55:51 +0200
committerKim Alvefur <zash@zash.se>2014-09-11 00:55:51 +0200
commita685dfb89e5c8895a767011961d2289810b72a1e (patch)
tree8788d734e0ae7404c1dc14d91dbe19b84b364328 /net/websocket.lua
parent6769313ce9b2c3c25d463aa1ed87a00570b72701 (diff)
downloadprosody-a685dfb89e5c8895a767011961d2289810b72a1e.tar.gz
prosody-a685dfb89e5c8895a767011961d2289810b72a1e.zip
net.websocket: Fix handling of 'protocol' argument
Diffstat (limited to 'net/websocket.lua')
-rw-r--r--net/websocket.lua15
1 files changed, 9 insertions, 6 deletions
diff --git a/net/websocket.lua b/net/websocket.lua
index 3c4746b7..f8daa278 100644
--- a/net/websocket.lua
+++ b/net/websocket.lua
@@ -190,17 +190,20 @@ local function connect(url, ex, listeners)
-- Either a single protocol string or an array of protocol strings.
local protocol = ex.protocol;
if type(protocol) == "string" then
- protocol = { protocol };
- end
- for _, v in ipairs(protocol) do
- protocol[v] = true;
+ protocol = { protocol, [protocol] = true };
+ elseif type(protocol) == "table" and protocol[1] then
+ for _, v in ipairs(protocol) do
+ protocol[v] = true;
+ end
+ else
+ protocol = nil;
end
local headers = {
["Upgrade"] = "websocket";
["Connection"] = "Upgrade";
["Sec-WebSocket-Key"] = key;
- ["Sec-WebSocket-Protocol"] = t_concat(protocol, ", ");
+ ["Sec-WebSocket-Protocol"] = protocol and t_concat(protocol, ", ");
["Sec-WebSocket-Version"] = "13";
["Sec-WebSocket-Extensions"] = ex.extensions;
}
@@ -238,7 +241,7 @@ local function connect(url, ex, listeners)
or r.headers["connection"]:lower() ~= "upgrade"
or r.headers["upgrade"] ~= "websocket"
or r.headers["sec-websocket-accept"] ~= base64.encode(sha1(key .. "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"))
- or not protocol[r.headers["sec-websocket-protocol"]]
+ or (protocol and not protocol[r.headers["sec-websocket-protocol"]])
then
s.readyState = 3;
log("warn", "WebSocket connection to %s failed: %s", url, tostring(b));