mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.hex: Deprecate to/from in favour of encode/decode, for consistency!
This commit is contained in:
parent
fe56effa55
commit
ab835fed13
8 changed files with 31 additions and 27 deletions
|
@ -13,7 +13,7 @@ local s_format = string.format;
|
|||
local s_sub = string.sub;
|
||||
|
||||
local iana_data = require "util.dnsregistry";
|
||||
local tohex = require "util.hex".to;
|
||||
local tohex = require "util.hex".encode;
|
||||
local inet_ntop = require "util.net".ntop;
|
||||
|
||||
-- Simplified versions of Waqas DNS parsers
|
||||
|
|
|
@ -23,4 +23,8 @@ local function from(s)
|
|||
return (s_gsub(s_lower(s), "%X*(%x%x)%X*", hex_to_char));
|
||||
end
|
||||
|
||||
return { to = to, from = from }
|
||||
return {
|
||||
encode = to, decode = from;
|
||||
-- COMPAT w/pre-0.12:
|
||||
to = to, from = from;
|
||||
};
|
||||
|
|
|
@ -67,7 +67,7 @@ function ip_methods:normal()
|
|||
end
|
||||
|
||||
function ip_methods.bits(ip)
|
||||
return hex.to(ip.packed):upper():gsub(".", hex2bits);
|
||||
return hex.encode(ip.packed):upper():gsub(".", hex2bits);
|
||||
end
|
||||
|
||||
function ip_methods.bits_full(ip)
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
local random = require "util.random";
|
||||
local random_bytes = random.bytes;
|
||||
local hex = require "util.hex".to;
|
||||
local hex = require "util.hex".encode;
|
||||
local m_ceil = math.ceil;
|
||||
|
||||
local function get_nibbles(n)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue