mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Use util.hex
This commit is contained in:
parent
94ceae0f0b
commit
34f85c79c0
1 changed files with 2 additions and 9 deletions
|
@ -16,6 +16,8 @@ local s_char = string.char;
|
|||
local s_match = string.match;
|
||||
local t_concat = table.concat;
|
||||
|
||||
local to_hex = require "util.hex".to;
|
||||
|
||||
local pcall = pcall;
|
||||
local envload = require"util.envload".envload;
|
||||
|
||||
|
@ -24,15 +26,6 @@ local m_type = math.type or function (n)
|
|||
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
||||
end;
|
||||
|
||||
local char_to_hex = {};
|
||||
for i = 0,255 do
|
||||
char_to_hex[s_char(i)] = s_format("%02x", i);
|
||||
end
|
||||
|
||||
local function to_hex(s)
|
||||
return (s_gsub(s, ".", char_to_hex));
|
||||
end
|
||||
|
||||
local function rawpairs(t)
|
||||
return next, t, nil;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue