mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 16:48:43 +00:00
Implemented missing prefix manipulation functions
This commit is contained in:
parent
5e173e9f63
commit
aedd3a6bab
45
lib/net.c
45
lib/net.c
@ -96,6 +96,23 @@ net_validate(const net_addr *N)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
net_normalize(net_addr *N)
|
||||||
|
{
|
||||||
|
net_addr_union *n = (void *) N;
|
||||||
|
|
||||||
|
switch (n->n.type)
|
||||||
|
{
|
||||||
|
case NET_IP4:
|
||||||
|
case NET_VPN4:
|
||||||
|
return net_normalize_ip4(&n->ip4);
|
||||||
|
|
||||||
|
case NET_IP6:
|
||||||
|
case NET_VPN6:
|
||||||
|
return net_normalize_ip6(&n->ip6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
net_classify(const net_addr *N)
|
net_classify(const net_addr *N)
|
||||||
{
|
{
|
||||||
@ -114,3 +131,31 @@ net_classify(const net_addr *N)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
ipa_in_netX(const ip_addr A, const net_addr *N)
|
||||||
|
{
|
||||||
|
switch (N->type)
|
||||||
|
{
|
||||||
|
case NET_IP4:
|
||||||
|
case NET_VPN4:
|
||||||
|
if (!ipa_is_ip4(A)) return 0;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case NET_IP6:
|
||||||
|
case NET_VPN6:
|
||||||
|
if (ipa_is_ip4(A)) return 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ipa_zero(ipa_and(ipa_xor(A, net_prefix(N)), ipa_mkmask(net_pxlen(N))));
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
net_in_netX(const net_addr *A, const net_addr *N)
|
||||||
|
{
|
||||||
|
if (A->type != N->type)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
return (net_pxlen(N) <= net_pxlen(A)) && ipa_in_netX(net_prefix(A), N);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user