VirtualBox

Changeset 15485 in vbox for trunk/src


Ignore:
Timestamp:
Dec 15, 2008 9:42:39 AM (16 years ago)
Author:
vboxsync
Message:

Storage/iSCSI: back out unwanted checkin, check in the actually relevant file.

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

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

    r15439 r15485  
    875875#endif
    876876            /* Pass all custom parameters. */
     877            bool fHostIP = true;
    877878            SafeArray <BSTR> names;
    878879            SafeArray <BSTR> values;
     
    890891                        rc = CFGMR3InsertString (pVDC, Utf8Str (names [i]),
    891892                                                 Utf8Str (values [i]));             RC_CHECK();
     893                    if (    names [i] == L"HostIPStack"
     894                        &&  values [i] == L"0")
     895                        fHostIP = false;
     896                }
     897                /* Custom code: put marker to not use host IP stack to driver
     898                 * configuration node. Simplifies life of DrvVD a bit. */
     899                if (!fHostIP)
     900                {
     901                    rc = CFGMR3InsertString (pCfg, "HostIPStack", "0");             RC_CHECK();
    892902                }
    893903            }
  • trunk/src/VBox/Main/HardDisk2Impl.cpp

    r15484 r15485  
    13131313
    13141314STDMETHODIMP HardDisk2::FlattenTo (IHardDisk2 *aTarget, IProgress **aProgress)
    1315 {
    1316     AutoCaller autoCaller (this);
    1317     CheckComRCReturnRC (autoCaller.rc());
    1318 
    1319     ReturnComNotImplemented();
    1320 }
    1321 
    1322 STDMETHODIMP HardDisk2::Compact (IProgress **aProgress)
    13231315{
    13241316    AutoCaller autoCaller (this);
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