]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Removed point-to-point tunnel hack as it breaks ordinary PtP interfaces.
authorMartin Mares <mj@ucw.cz>
Mon, 17 Jan 2000 12:40:00 +0000 (12:40 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 17 Jan 2000 12:40:00 +0000 (12:40 +0000)
I'll find a better solution soon.

TODO
sysdep/linux/netlink/netlink.c

diff --git a/TODO b/TODO
index 7428dfbfd7d416a1c6cffff46740280d575b9285..ff549a56fe85e91514eaa7fb2f825e363af44053 100644 (file)
--- a/TODO
+++ b/TODO
@@ -44,7 +44,6 @@ show  <name>                  # show everything you know about symbol <name>
        static ??? [<name>]
        symbols
 - showing of routing table as seen by given protocol
-- showing of deleted routing tables and filters
 
 Roadmap
 ~~~~~~~
index 11973e935b555c24c06064252df2d992c677b7c4..54e5cd8bbb0c801b1aaf262f9f0b7d56aff0acf6 100644 (file)
@@ -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)