mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Minor changes in addresses.
Mainly changes IA_UNNUMBERED to IA_PEER and adds IA_HOST. Also do not show broadcast addr in show interfaces. Nobody cares for that.
This commit is contained in:
@@ -98,7 +98,7 @@ scan_ifs(struct ifreq *r, int cnt)
|
||||
|
||||
if (fl & IFF_POINTOPOINT)
|
||||
{
|
||||
a.flags |= IA_UNNUMBERED;
|
||||
a.flags |= IA_PEER;
|
||||
if (ioctl(if_scan_sock, SIOCGIFDSTADDR, r) < 0)
|
||||
{ err = "SIOCGIFDSTADDR"; goto faulty; }
|
||||
get_sockaddr((struct sockaddr_in *) &r->ifr_addr, &a.opposite, NULL, 1);
|
||||
@@ -114,7 +114,7 @@ scan_ifs(struct ifreq *r, int cnt)
|
||||
&& (fl & IFF_MULTICAST)
|
||||
#endif
|
||||
#ifndef CONFIG_UNNUM_MULTICAST
|
||||
&& !(a.flags & IA_UNNUMBERED)
|
||||
&& !(a.flags & IA_PEER)
|
||||
#endif
|
||||
)
|
||||
i.flags |= IF_MULTICAST;
|
||||
|
Reference in New Issue
Block a user