X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=interface-ip.h;h=92667278096da88f4c8f41b4ea03f807c89a0307;hp=e83e32726312d6b09f690841cb6290ce854c4d40;hb=0b29011386305b9364ed25609b0dcfe351c610c5;hpb=409adfc2256d483b43b4cf92025e575212ea3372 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