From bffe024d3b4ef7df9a15462a1691f7accb75584e Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Wed, 16 Sep 2015 20:36:17 -0400 Subject: [PATCH] ircd_in_addr_t.c: Add test for the previous commit. --- ircd/test/ircd_in_addr_t.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ircd/test/ircd_in_addr_t.c b/ircd/test/ircd_in_addr_t.c index 7eaf56e..af70be0 100644 --- a/ircd/test/ircd_in_addr_t.c +++ b/ircd/test/ircd_in_addr_t.c @@ -124,6 +124,8 @@ static struct ipmask_test test_masks[] = { { "a:*:*", {{ 0xa, 0, 0, 0, 0, 0, 0, 0 }}, 1, 1, 16 }, { "a:/16", {{ 0xa, 0, 0, 0, 0, 0, 0, 0 }}, 1, 1, 16 }, { "0.0.0.0.0/1", {{ 0, 0, 0, 0, 0, 0, 0, 0 }}, 0, 0, 0 }, + { "2607:3f00:1:30c:9999*", + {{ 0x2607, 0x3f00, 1, 0x30c, 0x9999, 0, 0, 0 }}, 1, 1, 80 }, { 0 } }; -- 2.20.1