| From: Gert D. <ge...@gr...> - 2020-06-30 14:11:21 |
Hi, On Tue, Jun 30, 2020 at 04:07:52PM +0200, Jan Just Keijser wrote: > @@ -5697,6 +5740,11 @@ build_dhcp_options_string(struct buffer *buf, const struct tuntap_options *o) > write_dhcp_u32_array(buf, 42, (uint32_t *)o->ntp, o->ntp_len, &error); > write_dhcp_u32_array(buf, 45, (uint32_t *)o->nbdd, o->nbdd_len, &error); > > + for (int i=0; i < o->domain_search_list_len; i++) > + { > + write_dhcp_search_str(buf, 119, o->domain_search_list[i], &error); > + } I assume that this won't work. In the DHCP answer, it must be a single option with the concatenated list, not multiple answers with a single domain name each. gert -- "If was one thing all people took for granted, was conviction that if you feed honest figures into a computer, honest figures come out. Never doubted it myself till I met a computer with a sense of humor." Robert A. Heinlein, The Moon is a Harsh Mistress Gert Doering - Munich, Germany ge...@gr... |