store a pointer to the active interface as part of the device route
authorFelix Fietkau <nbd@openwrt.org>
Mon, 30 Apr 2012 17:41:48 +0000 (19:41 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 30 Apr 2012 17:41:48 +0000 (19:41 +0200)
interface-ip.c
interface-ip.h

index 3494731..c0ba381 100644 (file)
@@ -94,6 +94,7 @@ interface_ip_add_route(struct interface *iface, struct blob_attr *attr, bool v6)
        if ((cur = tb[ROUTE_MTU]) != NULL)
                route->mtu = blobmsg_get_u32(cur);
 
+       route->iface = ip->iface;
        vlist_add(&ip->route, &route->node, &route->flags);
        return;
 
index 887c62c..28df093 100644 (file)
@@ -36,6 +36,7 @@ struct device_addr {
 
 struct device_route {
        struct vlist_node node;
+       struct interface *iface;
 
        bool enabled;
        bool keep;