mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.websocket.frames: Throw an error if no bit lib is found
This commit is contained in:
parent
e0db9dc960
commit
0cd290671a
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ local softreq = require "util.dependencies".softreq;
|
|||
local log = require "util.logger".init "websocket.frames";
|
||||
local random_bytes = require "util.random".bytes;
|
||||
|
||||
local bit = softreq"bit" or softreq"bit32";
|
||||
if not bit then log("error", "No bit module found. Either LuaJIT 2, lua-bitop or Lua 5.2 is required"); end
|
||||
local bit = assert(softreq"bit" or softreq"bit32",
|
||||
"No bit module found. Either LuaJIT 2, lua-bitop or Lua 5.2 is required");
|
||||
local band = bit.band;
|
||||
local bor = bit.bor;
|
||||
local bxor = bit.bxor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue