aboutsummaryrefslogtreecommitdiffstats
path: root/net/websocket
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-10-06 16:49:01 +0200
committerKim Alvefur <zash@zash.se>2015-10-06 16:49:01 +0200
commit5d941b553acfce45e531ac56fa15cda472e728fe (patch)
tree436737a282e9aa844a85396c7c92a7c8221c1d5f /net/websocket
parentfc34f3fdbf8d1a0abe8f6ddc8e0f3bcb83710b8d (diff)
downloadprosody-5d941b553acfce45e531ac56fa15cda472e728fe.tar.gz
prosody-5d941b553acfce45e531ac56fa15cda472e728fe.zip
net.websocket.frames: Link to documentation when bitop is missing
Diffstat (limited to 'net/websocket')
-rw-r--r--net/websocket/frames.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/websocket/frames.lua b/net/websocket/frames.lua
index 2ff30736..e8faab2b 100644
--- a/net/websocket/frames.lua
+++ b/net/websocket/frames.lua
@@ -11,7 +11,7 @@ local log = require "util.logger".init "websocket.frames";
local random_bytes = require "util.random".bytes;
local bit = assert(softreq"bit" or softreq"bit32",
- "No bit module found. Either LuaJIT 2, lua-bitop or Lua 5.2 is required");
+ "No bit module found. See https://prosody.im/doc/depends#bitop");
local band = bit.band;
local bor = bit.bor;
local bxor = bit.bxor;