Lines Matching refs:d6o
169 dhcpv6_option_t d6o; in read_hostconf() local
180 while (opts + sizeof (d6o) <= optmax) { in read_hostconf()
186 (void) memcpy(&d6o, opts, sizeof (d6o)); in read_hostconf()
187 d6o.d6o_code = ntohs(d6o.d6o_code); in read_hostconf()
188 d6o.d6o_len = ntohs(d6o.d6o_len); in read_hostconf()
189 subomax = opts + sizeof (d6o) + d6o.d6o_len; in read_hostconf()
197 if (d6o.d6o_code != DHCPV6_OPT_IA_NA && in read_hostconf()
198 d6o.d6o_code != DHCPV6_OPT_IA_TA && in read_hostconf()
199 d6o.d6o_code != DHCPV6_OPT_IA_PD) { in read_hostconf()
207 if (d6o.d6o_code == DHCPV6_OPT_IA_TA) { in read_hostconf()
230 while (opts + sizeof (d6o) <= subomax) { in read_hostconf()
234 (void) memcpy(&d6o, opts, in read_hostconf()
235 sizeof (d6o)); in read_hostconf()
236 d6o.d6o_code = ntohs(d6o.d6o_code); in read_hostconf()
237 d6o.d6o_len = ntohs(d6o.d6o_len); in read_hostconf()
238 if (opts + sizeof (d6o) + d6o.d6o_len > in read_hostconf()
241 if (d6o.d6o_code != DHCPV6_OPT_IAADDR) { in read_hostconf()
242 opts += sizeof (d6o) + in read_hostconf()
243 d6o.d6o_len; in read_hostconf()
260 opts += sizeof (d6o) + d6o.d6o_len; in read_hostconf()