mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-03 18:37:48 +01:00
Adds support for PTP links on BSD.
This commit is contained in:
parent
53434e44a9
commit
afa9f66c27
@ -508,9 +508,6 @@ krt_read_addr(struct ks_msg *msg)
|
||||
memcpy(&ifa.brd, &ibrd, sizeof(ip_addr));
|
||||
|
||||
scope = ipa_classify(ifa.ip);
|
||||
|
||||
ifa.prefix = ipa_and(ifa.ip, ipa_mkmask(masklen));
|
||||
|
||||
if (scope < 0)
|
||||
{
|
||||
log(L_ERR "KIF: Invalid interface address %I for %s", ifa.ip, iface->name);
|
||||
@ -518,6 +515,14 @@ krt_read_addr(struct ks_msg *msg)
|
||||
}
|
||||
ifa.scope = scope & IADDR_SCOPE_MASK;
|
||||
|
||||
if (iface->flags & IF_MULTIACCESS)
|
||||
ifa.prefix = ipa_and(ifa.ip, ipa_mkmask(masklen));
|
||||
else /* PtP iface */
|
||||
{
|
||||
ifa.flags |= IA_UNNUMBERED;
|
||||
ifa.prefix = ifa.opposite = ifa.brd;
|
||||
}
|
||||
|
||||
if (new)
|
||||
ifa_update(&ifa);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user