diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-19 18:46:53 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-19 18:46:53 +0200 |
commit | a0dedf26ed338ef420784541da0676ad91e181a7 (patch) | |
tree | 7c513367943df3e25b2c71c20dda8c635409269e /proto-static.c | |
parent | 3130d87bd97dbf82f868a9507d60f17c60888c8e (diff) |
add support for keeping multiple ip addr/route/dns lists
Diffstat (limited to 'proto-static.c')
-rw-r--r-- | proto-static.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proto-static.c b/proto-static.c index b8f3412..a7d75ec 100644 --- a/proto-static.c +++ b/proto-static.c @@ -58,7 +58,7 @@ parse_addr(struct interface *iface, const char *str, bool v6, int mask) interface_add_error(iface, "proto-static", "INVALID_ADDRESS", &str, 1); return false; } - vlist_add(&iface->proto_addr, &addr->node); + vlist_add(&iface->proto_ip.addr, &addr->node); return true; } @@ -94,7 +94,7 @@ parse_gateway_option(struct interface *iface, struct blob_attr *attr, bool v6) } route->mask = 0; route->flags = DEVADDR_DEVICE | (v6 ? DEVADDR_INET6 : DEVADDR_INET4); - vlist_add(&iface->proto_route, &route->node); + vlist_add(&iface->proto_ip.route, &route->node); return true; } @@ -142,7 +142,7 @@ proto_apply_static_settings(struct interface *iface, struct blob_attr *attr) } if (tb[OPT_DNS]) - interface_add_dns_server_list(iface, tb[OPT_DNS]); + interface_add_dns_server_list(&iface->proto_ip, tb[OPT_DNS]); return 0; |