X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=interface-ip.h;h=6ad9b427800b8c935e14c5741c087302cfd9b680;hp=e83e32726312d6b09f690841cb6290ce854c4d40;hb=f8276b9b149f3b0c8f3cdf8d3d0c232bd92e3464;hpb=409adfc2256d483b43b4cf92025e575212ea3372 diff --git a/interface-ip.h b/interface-ip.h index e83e327..6ad9b42 100644 --- a/interface-ip.h +++ b/interface-ip.h @@ -3,12 +3,15 @@ enum device_addr_flags { /* address family for routes and addresses */ - DEVADDR_INET4 = (0 << 0), - DEVADDR_INET6 = (1 << 0), - DEVADDR_FAMILY = DEVADDR_INET4 | DEVADDR_INET6, + DEVADDR_INET4 = (0 << 0), + DEVADDR_INET6 = (1 << 0), + DEVADDR_FAMILY = DEVADDR_INET4 | DEVADDR_INET6, /* device route (no gateway) */ - DEVADDR_DEVICE = (1 << 1), + DEVADDR_DEVICE = (1 << 1), + + /* externally added address */ + DEVADDR_EXTERNAL = (1 << 2), }; union if_addr { @@ -17,33 +20,49 @@ union if_addr { }; struct device_addr { - struct list_head list; - void *ctx; + struct vlist_node node; enum device_addr_flags flags; + /* must be last */ unsigned int mask; union if_addr addr; }; struct device_route { - struct list_head list; - void *ctx; + struct vlist_node node; enum device_addr_flags flags; bool keep; + union if_addr nexthop; + struct device *device; + + /* must be last */ unsigned int mask; union if_addr addr; - 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); +struct dns_server { + struct list_head list; + int af; + union if_addr addr; +}; + +struct dns_search_domain { + struct list_head list; + char name[]; +}; + +void interface_ip_init(struct interface *iface); +void interface_add_dns_server(struct interface *iface, const char *str); +void interface_add_dns_server_list(struct interface *iface, struct blob_attr *list); +void interface_add_dns_search_list(struct interface *iface, struct blob_attr *list); +void interface_clear_dns(struct interface *iface); +void interface_write_resolv_conf(void); + +void interface_ip_update_start(struct interface *iface); +void interface_ip_update_complete(struct interface *iface); -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); #endif