Software /
code /
prosody
File
util/bit53.lua @ 12452:c475a7802169 0.12
prosodyctl: Pass server when listing (outdated) plugins (fix #1738)
Needed since it checks the manifest of the repository and most likely
defaults to luarocks.org unless specified
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 05 Apr 2022 14:27:37 +0200 |
parent | 12365:af02b033bd7f |
child | 13449:9912baa541c0 |
line wrap: on
line source
-- Only the operators needed by net.websocket.frames are provided at this point return { band = function (a, b, ...) local ret = a & b; if ... then for i = 1, select("#", ...) do ret = ret & (select(i, ...)); end end return ret; end; bor = function (a, b, ...) local ret = a | b; if ... then for i = 1, select("#", ...) do ret = ret | (select(i, ...)); end end return ret; end; bxor = function (a, b, ...) local ret = a ~ b; if ... then for i = 1, select("#", ...) do ret = ret ~ (select(i, ...)); end end return ret; end; rshift = function (a, n) return a >> n end; lshift = function (a, n) return a << n end; };