diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-23 14:41:53 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-23 14:41:53 +0200 |
commit | b7d1c27b752df3e6c5dfe6a5b789d6cb0c87d0f6 (patch) | |
tree | e64c47acf58a4a9eb29d20ef21537db55174df1b /interface.h | |
parent | c7a52ed70eaae0207d7f7e6c4a31035f5ec3757e (diff) |
move l3 device tracking to interface core to enforce proper order of address/route removal on device or interface state changes
Diffstat (limited to 'interface.h')
-rw-r--r-- | interface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/interface.h b/interface.h index f0b26f5..b2ecd23 100644 --- a/interface.h +++ b/interface.h @@ -76,7 +76,7 @@ struct interface { struct device_user main_dev; /* interface that layer 3 communication will go through */ - struct device_user *l3_dev; + struct device_user l3_dev; struct blob_attr *config; @@ -111,6 +111,8 @@ int interface_set_up(struct interface *iface); int interface_set_down(struct interface *iface); void __interface_set_down(struct interface *iface, bool force); +void interface_set_main_dev(struct interface *iface, struct device *dev); +void interface_set_l3_dev(struct interface *iface, struct device *dev); void interface_add_user(struct interface_user *dep, struct interface *iface); void interface_remove_user(struct interface_user *dep); |