summaryrefslogtreecommitdiff
path: root/interface-ip.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-07 14:37:18 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-09-07 14:37:18 +0200
commit69b2dcb92b8402b9c6df4d6a041a890fe6468e18 (patch)
treec0acc6b30947ac7c8499d6d2f402abf837c9008c /interface-ip.h
parent3fa53680c85a6e029a3e7b4d673bffee4795fa52 (diff)
downloadnetifd-69b2dcb92b8402b9c6df4d6a041a890fe6468e18.tar.gz
add code for versioned lists and use it to manage addresses and routes
Diffstat (limited to 'interface-ip.h')
-rw-r--r--interface-ip.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/interface-ip.h b/interface-ip.h
index e83e327..9266727 100644
--- a/interface-ip.h
+++ b/interface-ip.h
@@ -17,8 +17,7 @@ union if_addr {
};
struct device_addr {
- struct list_head list;
- void *ctx;
+ struct vlist_node node;
enum device_addr_flags flags;
@@ -27,8 +26,7 @@ struct device_addr {
};
struct device_route {
- struct list_head list;
- void *ctx;
+ struct vlist_node node;
enum device_addr_flags flags;
bool keep;
@@ -38,12 +36,6 @@ struct device_route {
union if_addr nexthop;
};
-int interface_add_address(struct interface *iface, struct device_addr *addr);
-void interface_del_address(struct interface *iface, struct device_addr *addr);
-void interface_del_ctx_addr(struct interface *iface, void *ctx);
-
-int interface_add_route(struct interface *iface, struct device_route *route);
-void interface_del_route(struct interface *iface, struct device_route *route);
-void interface_del_all_routes(struct interface *iface);
+void interface_ip_init(struct interface *iface);
#endif