VirtualBox

Changeset 48405 in vbox


Ignore:
Timestamp:
Sep 10, 2013 12:22:17 PM (11 years ago)
Author:
vboxsync
Message:

NAT/Loopback mapping: changes semantically unrelated symbol ";" with more expressive "=" for map opperation.

VBoxManage natnework modify -t nat-test-1 -l "127.0.1.3=8"

Location:
trunk/src/VBox
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageNATNetwork.cpp

    r48363 r48405  
    390390            if (!vLoopback2Add.empty())
    391391            {
    392                 /* we're expecting stings 127.0.0.1;5 */
     392                /* we're expecting stings 127.0.0.1=5 */
    393393                LOOPBACK2DELETEADDITERATOR it;
    394394                for (it = vLoopback2Add.begin();
     
    397397                {
    398398                    std::string address, strOffset;
    399                     int pos = it->find(';');
     399                    int pos = it->find('=');
    400400                    LONG lOffset = 0;
    401401                    Bstr bstrAddress;
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r48298 r48405  
    14321432    </attribute>
    14331433    <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.
    14351435      </desc>
    14361436    </attribute>
  • trunk/src/VBox/Main/src-server/NATNetworkImpl.cpp

    r48379 r48405  
    521521         it != m->llNATLoopbackOffsetList.end(); ++it, ++i)
    522522      {
    523           BstrFmt bstr("%s;%d",
     523          BstrFmt bstr("%s=%d",
    524524                       (*it).strLoopbackHostAddress.c_str(),
    525525                       (*it).u32Offset);
  • trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp

    r48401 r48405  
    407407                RT_ZERO(aszAddr);
    408408               
    409                 pszTerm = RTStrStr(pszLo2Off, ";");
     409                pszTerm = RTStrStr(pszLo2Off, "=");
    410410
    411411                if (   pszTerm
  • trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp

    r48403 r48405  
    915915                RT_ZERO(aszAddr);
    916916               
    917                 pszTerm = RTStrStr(pszLo2Off, ";");
     917                pszTerm = RTStrStr(pszLo2Off, "=");
    918918
    919919                if (   !pszTerm
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette