Mercurial > prosody-hg
view util/bit53.lua @ 14092:72018fe1c334
net.http: Allow passing a 'target_filter' function to restrict connection targets
For example, this is useful if you want to filter out private IP ranges when
making connections to user-provided URLs.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Sun, 22 Feb 2026 17:22:42 +0000 |
| 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; };
