1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Temporary work-arounds for multicast problems. Needs further investigation.

This commit is contained in:
Martin Mares
1999-12-08 15:12:54 +00:00
parent 0da472d7e8
commit 30bc402ebb
3 changed files with 10 additions and 0 deletions

View File

@@ -302,7 +302,11 @@ nl_parse_link(struct nlmsghdr *h, int scan)
if (fl & IFF_UP)
f.flags |= IF_LINK_UP;
if (fl & IFF_POINTOPOINT)
#if 0
f.flags |= IF_UNNUMBERED | IF_MULTICAST;
#else /* FIXME: Are tunnels always unnumbered? */
f.flags |= IF_MULTICAST;
#endif
if (fl & IFF_LOOPBACK)
f.flags |= IF_LOOPBACK | IF_IGNORE;
if (fl & IFF_BROADCAST)