mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
changed default ipv6 prefix to 2001:db8:cafe:: (#1321)
to be compliant with RFC3849
This commit is contained in:
parent
ea6675879c
commit
f75e51ca46
36 changed files with 87 additions and 87 deletions
|
|
@ -417,13 +417,13 @@ static void test8_func(abts_case *tc, void *data)
|
|||
rv = ogs_ipsubnet(&ipsub, "172.16.0.1", "16");
|
||||
ABTS_INT_EQUAL(tc, OGS_OK, rv);
|
||||
|
||||
rv = ogs_ipsubnet(&ipsub, "2001:230:cafe::1", "64");
|
||||
rv = ogs_ipsubnet(&ipsub, "2001:db8:cafe::1", "64");
|
||||
ABTS_INT_EQUAL(tc, OGS_OK, rv);
|
||||
|
||||
rv = ogs_ipsubnet(&ipsub, "172.16.0.1", NULL);
|
||||
ABTS_INT_EQUAL(tc, OGS_OK, rv);
|
||||
|
||||
rv = ogs_ipsubnet(&ipsub, "2001:230:cafe::1", NULL);
|
||||
rv = ogs_ipsubnet(&ipsub, "2001:db8:cafe::1", NULL);
|
||||
ABTS_INT_EQUAL(tc, OGS_OK, rv);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue