Changeset 48405 in vbox
- Timestamp:
- Sep 10, 2013 12:22:17 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageNATNetwork.cpp
r48363 r48405 390 390 if (!vLoopback2Add.empty()) 391 391 { 392 /* we're expecting stings 127.0.0.1 ;5 */392 /* we're expecting stings 127.0.0.1=5 */ 393 393 LOOPBACK2DELETEADDITERATOR it; 394 394 for (it = vLoopback2Add.begin(); … … 397 397 { 398 398 std::string address, strOffset; 399 int pos = it->find(' ;');399 int pos = it->find('='); 400 400 LONG lOffset = 0; 401 401 Bstr bstrAddress; -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r48298 r48405 1432 1432 </attribute> 1433 1433 <attribute name="localMappings" type="wstring" readonly="yes" safearray="yes"> 1434 <desc>Array of mappings (address,offset),e.g. ("127.0.1.1 ;4") maps 127.0.1.1 to networkid + 4.1434 <desc>Array of mappings (address,offset),e.g. ("127.0.1.1=4") maps 127.0.1.1 to networkid + 4. 1435 1435 </desc> 1436 1436 </attribute> -
trunk/src/VBox/Main/src-server/NATNetworkImpl.cpp
r48379 r48405 521 521 it != m->llNATLoopbackOffsetList.end(); ++it, ++i) 522 522 { 523 BstrFmt bstr("%s ;%d",523 BstrFmt bstr("%s=%d", 524 524 (*it).strLoopbackHostAddress.c_str(), 525 525 (*it).u32Offset); -
trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
r48401 r48405 407 407 RT_ZERO(aszAddr); 408 408 409 pszTerm = RTStrStr(pszLo2Off, " ;");409 pszTerm = RTStrStr(pszLo2Off, "="); 410 410 411 411 if ( pszTerm -
trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp
r48403 r48405 915 915 RT_ZERO(aszAddr); 916 916 917 pszTerm = RTStrStr(pszLo2Off, " ;");917 pszTerm = RTStrStr(pszLo2Off, "="); 918 918 919 919 if ( !pszTerm
Note:
See TracChangeset
for help on using the changeset viewer.