summaryrefslogtreecommitdiff
path: root/interface.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-19 20:51:57 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-10-19 20:51:57 +0200
commit33a44b9c7d5e8c87303b8126fe9e01f8979f48e5 (patch)
tree89132c13680bf45b40af171194c3dd1e27f9aae2 /interface.h
parenta0dedf26ed338ef420784541da0676ad91e181a7 (diff)
downloadnetifd-33a44b9c7d5e8c87303b8126fe9e01f8979f48e5.tar.gz
rework route handling, move parser code to interface-ip.c, add extra options and add further support for pulling routes from config
Diffstat (limited to 'interface.h')
-rw-r--r--interface.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/interface.h b/interface.h
index 598774b..3ce4c99 100644
--- a/interface.h
+++ b/interface.h
@@ -41,6 +41,7 @@ struct interface_user {
struct interface_ip_settings {
struct interface *iface;
+ bool enabled;
struct vlist_tree addr;
struct vlist_tree route;
@@ -83,6 +84,7 @@ struct interface {
struct interface_proto_state *proto;
struct interface_ip_settings proto_ip;
+ struct interface_ip_settings config_ip;
/* errors/warnings while trying to bring up the interface */
struct list_head errors;
@@ -116,6 +118,9 @@ void interface_remove_link(struct interface *iface, struct device *llif);
void interface_add_error(struct interface *iface, const char *subsystem,
const char *code, const char **data, int n_data);
+void interface_update_start(struct interface *iface);
+void interface_update_complete(struct interface *iface);
+
void interface_queue_event(struct interface *iface, enum interface_event ev);
void interface_dequeue_event(struct interface *iface);