IPv4 Pool done

This commit is contained in:
Sukchan Lee 2017-12-12 23:50:38 +09:00
parent 989de209d0
commit 54636e1843
8 changed files with 333 additions and 5 deletions

View file

@ -433,6 +433,12 @@ static void sock_test8(abts_case *tc, void *data)
rv = core_ipsubnet(&ipsub, "cafe::1", "64");
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = core_ipsubnet(&ipsub, "172.16.0.1", NULL);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = core_ipsubnet(&ipsub, "cafe::1", NULL);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
}
abts_suite *testsock(abts_suite *suite)