Changeset 18000 in vbox
- Timestamp:
- Mar 17, 2009 9:06:51 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostNetworkInterfaceImpl.cpp
r17996 r18000 464 464 CheckComRCReturnRC (autoCaller.rc()); 465 465 466 if (aIPV6MaskPrefixLength == 0)467 aIPV6MaskPrefixLength = 64;468 466 int rc = S_OK; 469 467 if (m.IPV6Address != aIPV6Address || m.IPV6NetworkMaskPrefixLength != aIPV6MaskPrefixLength) 468 { 469 if (aIPV6MaskPrefixLength == 0) 470 aIPV6MaskPrefixLength = 64; 470 471 rc = NetIfEnableStaticIpConfigV6(mVBox, this, m.IPV6Address, aIPV6Address, aIPV6MaskPrefixLength); 472 } 471 473 if (RT_FAILURE(rc)) 472 474 {
Note:
See TracChangeset
for help on using the changeset viewer.