From: Martin Mares Date: Mon, 17 Jan 2000 12:40:00 +0000 (+0000) Subject: Removed point-to-point tunnel hack as it breaks ordinary PtP interfaces. X-Git-Tag: v1.2.0~1353 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb89b1a4ced5f3d847ecbc1d4b86a0cb47564ef7;p=thirdparty%2Fbird.git Removed point-to-point tunnel hack as it breaks ordinary PtP interfaces. I'll find a better solution soon. --- diff --git a/TODO b/TODO index 7428dfbfd..ff549a56f 100644 --- a/TODO +++ b/TODO @@ -44,7 +44,6 @@ show # show everything you know about symbol static ??? [] symbols - showing of routing table as seen by given protocol -- showing of deleted routing tables and filters Roadmap ~~~~~~~ diff --git a/sysdep/linux/netlink/netlink.c b/sysdep/linux/netlink/netlink.c index 11973e935..54e5cd8bb 100644 --- a/sysdep/linux/netlink/netlink.c +++ b/sysdep/linux/netlink/netlink.c @@ -301,12 +301,9 @@ nl_parse_link(struct nlmsghdr *h, int scan) fl = i->ifi_flags; if (fl & IFF_UP) f.flags |= IF_LINK_UP; + /* FIXME: Unnumberedness of tunnels */ 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)