aboutsummaryrefslogtreecommitdiffstats
path: root/lua/inet/init.lua
blob: bea6ff2d7ed89671d408e1c040c41abf898f67cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
local core = require 'inet.core'
local set  = require 'inet.set'

local new_inet = core.new_inet

local M = {}
local mt = {}

function mt.__call(_, ...)
	return new_inet(...)
end

M.is4 = core.is_inet4
M.is6 = core.is_inet6
M.is  = core.is_inet

M.is_set = set.is_set
M.set    = set.new

return setmetatable(M, mt)