mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
225 B
8 lines
225 B
|
7 years ago
|
-- Only the operators needed by net.websocket.frames are provided at this point
|
||
|
|
return {
|
||
|
|
band = function (a, b) return a & b end;
|
||
|
|
bor = function (a, b) return a | b end;
|
||
|
|
bxor = function (a, b) return a ~ b end;
|
||
|
|
};
|
||
|
|
|