From 2149068c6dec19edc33010bf2026a41dd3503c2f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Asbj=C3=B8rn=20Sloth=20T=C3=B8nnesen?= <ast@2e8.dk>
Date: Thu, 18 Jul 2019 17:49:05 +0000
Subject: define inet.mixed_networks
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Asbjørn Sloth Tønnesen <ast@2e8.dk>
---
 lua/inet/init.lua | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'lua')

diff --git a/lua/inet/init.lua b/lua/inet/init.lua
index bea6ff2..2dc7855 100644
--- a/lua/inet/init.lua
+++ b/lua/inet/init.lua
@@ -10,6 +10,12 @@ 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
-- 
cgit v1.2.1