diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-04 12:23:41 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-04 12:28:13 +0200 |
commit | 23bb091077348d3b87b9900ae3ff923cdd25a662 (patch) | |
tree | f7449b4495227ee5f190cd42d8b5ac92b1ed088b /interface-ip.h | |
parent | 46d52638f04c471a0e86d07ccae6a188f1a05ef5 (diff) |
add a ubus interface to dynamically create host routes to a particular ip address, returns the interface that the route goes through
Diffstat (limited to 'interface-ip.h')
-rw-r--r-- | interface-ip.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/interface-ip.h b/interface-ip.h index 28df093..bd1464c 100644 --- a/interface-ip.h +++ b/interface-ip.h @@ -64,7 +64,7 @@ struct dns_search_domain { extern const struct config_param_list route_attr_list; -void interface_ip_init(struct interface_ip_settings *ip, struct interface *iface); +void interface_ip_init(struct interface *iface); void interface_add_dns_server(struct interface_ip_settings *ip, const char *str); void interface_add_dns_server_list(struct interface_ip_settings *ip, struct blob_attr *list); void interface_add_dns_search_list(struct interface_ip_settings *ip, struct blob_attr *list); @@ -78,4 +78,6 @@ void interface_ip_flush(struct interface_ip_settings *ip); void interface_ip_set_enabled(struct interface_ip_settings *ip, bool enabled); void interface_ip_update_metric(struct interface_ip_settings *ip, int metric); +struct interface *interface_ip_add_target_route(union if_addr *addr, bool v6); + #endif |