X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto.c;h=29dd4296dd367d84b1c9e5f6470ee8b311fb59d4;hp=ce56a66fba9c96a3150fccbe3b5bb15636ab9058;hb=f5ca090c260a74fd3576f79ffb8799e8c20e3878;hpb=a3606a74c672ef6471c006d15262dbb8ea60d025 diff --git a/proto.c b/proto.c index ce56a66..29dd429 100644 --- a/proto.c +++ b/proto.c @@ -19,6 +19,7 @@ enum { OPT_GATEWAY, OPT_IP6GW, OPT_DNS, + OPT_DNS_SEARCH, __OPT_MAX, }; @@ -29,6 +30,7 @@ static const struct blobmsg_policy proto_ip_attributes[__OPT_MAX] = { [OPT_GATEWAY] = { .name = "gateway", .type = BLOBMSG_TYPE_STRING }, [OPT_IP6GW] = { .name = "ip6gw", .type = BLOBMSG_TYPE_STRING }, [OPT_DNS] = { .name = "dns", .type = BLOBMSG_TYPE_ARRAY }, + [OPT_DNS_SEARCH] = { .name = "dns_search", .type = BLOBMSG_TYPE_ARRAY }, }; static const union config_param_info proto_ip_attr_info[__OPT_MAX] = { @@ -224,6 +226,9 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex if (tb[OPT_DNS]) interface_add_dns_server_list(&iface->proto_ip, tb[OPT_DNS]); + if (tb[OPT_DNS_SEARCH]) + interface_add_dns_search_list(&iface->proto_ip, tb[OPT_DNS_SEARCH]); + return 0; error: