+lldpd (0.7.18)
+ * Fix:
+ + Restore ability to detect bridge and bonds without
+ netlink. Linux kernels prior to 2.6.39 don't have this
+ information available with netlink.
+ * Change:
+ + Remove old bridge code (the one using ioctl).
+
lldpd (0.7.17)
* Fix:
+ Fix an infinite loop when using veth on Linux 4.1+ kernels.
.cleanup = iflinux_eth_close,
};
-#ifdef ENABLE_OLDIES
static int
iflinux_is_bridge(struct lldpd *cfg,
struct interfaces_device_list *interfaces,
struct interfaces_device *iface)
{
-#ifdef ENABLE_OLDIES
struct interfaces_device *port;
char path[SYSFS_PATH_MAX];
int f;
}
return 1;
-#else
- return 0;
-#endif
}
static int
struct interfaces_device_list *interfaces,
struct interfaces_device *master)
{
-#ifdef ENABLE_OLDIES
/* Shortcut if we detect the new team driver. Upper and lower links
* should already be set with netlink in this case. */
if (master->driver && !strcmp(master->driver, "team")) {
}
return 1;
}
-#endif
return 0;
}