Searched defs:hintAddress (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/NetworkServices/DHCP/
H A DConfig.cpp423 RTNETADDRIPV4 hintAddress; local
431 hintAddress.u = 0;
435 hintAddress.u = *(uint32_t *)opt.au8RawOpt;
436 if ( RT_H2N_U32(hintAddress.u) < RT_H2N_U32(pNetCfg->lowerIp().u)
437 || RT_H2N_U32(hintAddress.u) > RT_H2N_U32(pNetCfg->upperIp().u))
438 hintAddress.u = 0; /* clear hint */
441 if ( hintAddress.u
442 && !isAddressTaken(hintAddress))
446 l.setAddress(hintAddress);
447 m->m_allocations.insert(MapLease2Ip4AddressPair(l, hintAddress));
[all...]

Completed in 46 milliseconds