VirtualBox

Changeset 15752 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Dec 24, 2008 3:19:35 PM (16 years ago)
Author:
vboxsync
Message:

NetFlt/win: don't display disabled adapters

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

Legend:

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

    r15686 r15752  
    362362    if (RT_SUCCESS (mHostDrives.updateDVDs()))
    363363        for (DriveInfoList::const_iterator it = mHostDrives.DVDBegin();
    364              SUCCEEDED (rc) && it != mHostDrives.DVDEnd(); ++it)       
     364             SUCCEEDED (rc) && it != mHostDrives.DVDEnd(); ++it)
    365365        {
    366366            ComObjPtr<HostDVDDrive> hostDVDDriveObj;
     
    442442    if (RT_SUCCESS (mHostDrives.updateFloppies()))
    443443        for (DriveInfoList::const_iterator it = mHostDrives.FloppyBegin();
    444              SUCCEEDED (rc) && it != mHostDrives.FloppyEnd(); ++it)       
     444             SUCCEEDED (rc) && it != mHostDrives.FloppyEnd(); ++it)
    445445        {
    446446            ComObjPtr<HostFloppyDrive> hostFloppyDriveObj;
     
    997997                                if(hr == S_OK)
    998998                                {
    999                                     vboxNetWinAddComponent(&list, pMpNcc);
     999                                    ULONG uComponentStatus;
     1000                                    hr = pMpNcc->GetDeviceStatus(&uComponentStatus);
     1001                                    Assert(hr == S_OK);
     1002                                    if(hr == S_OK)
     1003                                    {
     1004                                        if(uComponentStatus == 0)
     1005                                        {
     1006                                            vboxNetWinAddComponent(&list, pMpNcc);
     1007                                        }
     1008                                    }
    10001009                                    VBoxNetCfgWinReleaseRef( pMpNcc );
    10011010                                }
  • trunk/src/VBox/Main/win/NetIfList-win.cpp

    r15548 r15752  
    398398                                if(hr == S_OK)
    399399                                {
    400                                     vboxNetWinAddComponent(&list, pMpNcc);
     400                                    ULONG uComponentStatus;
     401                                    hr = pMpNcc->GetDeviceStatus(&uComponentStatus);
     402                                    Assert(hr == S_OK);
     403                                    if(hr == S_OK)
     404                                    {
     405                                        if(uComponentStatus == 0)
     406                                        {
     407                                            vboxNetWinAddComponent(&list, pMpNcc);
     408                                        }
     409                                    }
    401410                                    VBoxNetCfgWinReleaseRef( pMpNcc );
    402411                                }
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