VirtualBox

Changeset 15498 in vbox for trunk


Ignore:
Timestamp:
Dec 15, 2008 12:21:54 PM (16 years ago)
Author:
vboxsync
Message:

Main/ConsoleImpl: fix iSCSI over IntNet config for good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ConsoleImpl2.cpp

    r15497 r15498  
    889889                {
    890890                    if (values [i])
    891                         rc = CFGMR3InsertString (pVDC, Utf8Str (names [i]),
    892                                                  Utf8Str (values [i]));             RC_CHECK();
    893                     if (    names [i] == L"HostIPStack"
    894                         &&  values [i] == L"0")
    895                         fHostIP = false;
     891                    {
     892                        Utf8Str name = names [i];
     893                        Utf8Str value = values [i];
     894                        rc = CFGMR3InsertString (pVDC, name, value);
     895                        if (    !(name.compare("HostIPStack"))
     896                            &&  !(value.compare("0")))
     897                            fHostIP = false;
     898                    }
    896899                }
    897900                /* Custom code: put marker to not use host IP stack to driver
     
    899902                if (!fHostIP)
    900903                {
    901                     rc = CFGMR3InsertString (pCfg, "HostIPStack", "0");             RC_CHECK();
     904                    rc = CFGMR3InsertInteger (pCfg, "HostIPStack", 0);          RC_CHECK();
    902905                }
    903906            }
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