aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-12-01 01:55:15 +0100
committerKim Alvefur <zash@zash.se>2017-12-01 01:55:15 +0100
commita4c975abc34beac6728c00f3e5ad88c9cd4cb3d7 (patch)
tree7318399b7567ccad27e3d7d4f1cc353e500a200d
parentab9bc74a985ed87fb603035c477c4d114f503f66 (diff)
downloadprosody-a4c975abc34beac6728c00f3e5ad88c9cd4cb3d7.tar.gz
prosody-a4c975abc34beac6728c00f3e5ad88c9cd4cb3d7.zip
util.ip: Reflow metatable
-rw-r--r--util/ip.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/util/ip.lua b/util/ip.lua
index 4526ae76..19be7013 100644
--- a/util/ip.lua
+++ b/util/ip.lua
@@ -6,9 +6,15 @@
--
local ip_methods = {};
-local ip_mt = { __index = function (ip, key) return (ip_methods[key])(ip); end,
- __tostring = function (ip) return ip.addr; end,
- __eq = function (ipA, ipB) return ipA.addr == ipB.addr; end};
+
+local ip_mt = {
+ __index = function (ip, key)
+ return ip_methods[key](ip);
+ end,
+ __tostring = function (ip) return ip.addr; end,
+ __eq = function (ipA, ipB) return ipA.addr == ipB.addr; end
+};
+
local hex2bits = {
["0"] = "0000", ["1"] = "0001", ["2"] = "0010", ["3"] = "0011",
["4"] = "0100", ["5"] = "0101", ["6"] = "0110", ["7"] = "0111",