Mercurial > prosody-hg
view util/bit53.lua @ 13905:0e346f4d88ce
MUC: Add get_occupant_id_from_jid() method, which works on real JIDs
This is useful to get the occupant ID of someone who is affiliated, but not
currently joined to the room.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 20 Jun 2025 18:55:39 +0100 |
| parents | 9912baa541c0 |
| children |
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; bnot = function (x) return ~x; end; rshift = function (a, n) return a >> n end; lshift = function (a, n) return a << n end; };
