projects
/
project
/
netifd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd4b616
)
store a pointer to the active interface as part of the device route
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 30 Apr 2012 17:41:48 +0000
(19:41 +0200)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 30 Apr 2012 17:41:48 +0000
(19:41 +0200)
interface-ip.c
patch
|
blob
|
history
interface-ip.h
patch
|
blob
|
history
diff --git
a/interface-ip.c
b/interface-ip.c
index
3494731
..
c0ba381
100644
(file)
--- a/
interface-ip.c
+++ b/
interface-ip.c
@@
-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;
diff --git
a/interface-ip.h
b/interface-ip.h
index
887c62c
..
28df093
100644
(file)
--- a/
interface-ip.h
+++ b/
interface-ip.h
@@
-36,6
+36,7
@@
struct device_addr {
struct device_route {
struct vlist_node node;
+ struct interface *iface;
bool enabled;
bool keep;