diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-09-07 14:37:18 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-09-07 14:37:18 +0200 |
commit | 69b2dcb92b8402b9c6df4d6a041a890fe6468e18 (patch) | |
tree | c0acc6b30947ac7c8499d6d2f402abf837c9008c /interface-ip.h | |
parent | 3fa53680c85a6e029a3e7b4d673bffee4795fa52 (diff) |
add code for versioned lists and use it to manage addresses and routes
Diffstat (limited to 'interface-ip.h')
-rw-r--r-- | interface-ip.h | 14 |
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 |