Changeset 22275 in vbox for trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
- Timestamp:
- Aug 15, 2009 9:27:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
r22254 r22275 652 652 653 653 /* Expand the IP lease range. */ 654 uint32_t const u End= RT_N2H_U32(pCfg->m_UpperAddr.u);655 for (uint32_t i = RT_N2H_U32(pCfg->m_LowerAddr.u); i <= u End; i++)654 uint32_t const uLast = RT_N2H_U32(pCfg->m_UpperAddr.u); 655 for (uint32_t i = RT_N2H_U32(pCfg->m_LowerAddr.u); i <= uLast; i++) 656 656 { 657 657 RTNETADDRIPV4 IPv4Addr;
Note:
See TracChangeset
for help on using the changeset viewer.