blob: 2dc7855d9ca7166d686d550a93aff5b891c08f61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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
do
local mixed_networks = set.new()
mixed_networks:add(new_inet('::ffff:0.0.0.0/96'))
M.mixed_networks = mixed_networks
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)
|