From 5e5cd11724f6cf86edc5796e6b805573c767f757 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 13 Oct 2011 14:58:51 +0200 Subject: add functions for adding dns servers to the proto list, hook them up in proto-static.c --- proto-static.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'proto-static.c') diff --git a/proto-static.c b/proto-static.c index 17cff0a..f5d676a 100644 --- a/proto-static.c +++ b/proto-static.c @@ -17,6 +17,7 @@ enum { OPT_NETMASK, OPT_GATEWAY, OPT_IP6GW, + OPT_DNS, __OPT_MAX, }; @@ -26,11 +27,13 @@ static const struct blobmsg_policy static_attrs[__OPT_MAX] = { [OPT_NETMASK] = { .name = "netmask", .type = BLOBMSG_TYPE_STRING }, [OPT_GATEWAY] = { .name = "gateway", .type = BLOBMSG_TYPE_STRING }, [OPT_IP6GW] = { .name = "ip6gw", .type = BLOBMSG_TYPE_STRING }, + [OPT_DNS] = { .name = "dns", .type = BLOBMSG_TYPE_ARRAY }, }; static const union config_param_info static_attr_info[__OPT_MAX] = { [OPT_IPADDR] = { .type = BLOBMSG_TYPE_STRING }, [OPT_IP6ADDR] = { .type = BLOBMSG_TYPE_STRING }, + [OPT_DNS] = { .type = BLOBMSG_TYPE_STRING }, }; static const struct config_param_list static_attr_list = { @@ -140,6 +143,9 @@ proto_apply_static_settings(struct interface *iface, struct blob_attr *attr) goto out; } + if (tb[OPT_DNS]) + interface_add_dns_server_list(iface, tb[OPT_DNS]); + return 0; error: -- cgit v1.2.1