Changeset 62719 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/win
- Timestamp:
- Jul 29, 2016 10:12:45 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109293
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/drv/VBoxNetFltP-win.cpp
r62709 r62719 1490 1490 { 1491 1491 NDIS_DEVICE_POWER_STATE enmPowerState = *((PNDIS_DEVICE_POWER_STATE)pNetPnPEvent->Buffer); 1492 return vboxNetFltWinPtPnPSetPower(pNetFlt, enmPowerState); 1493 } 1492 NDIS_STATUS rcNdis = vboxNetFltWinPtPnPSetPower(pNetFlt, enmPowerState); 1493 LogFlowFunc(("LEAVE: pNetFlt (0x%p), NetEvent (%d), rcNdis=%#x\n", pNetFlt, pNetPnPEvent->NetEvent, rcNdis)); 1494 return rcNdis; 1495 } 1496 1494 1497 case NetEventReconfigure: 1495 1498 { … … 1499 1502 } 1500 1503 } 1504 /** @todo r=bird: Is the fall thru intentional?? */ 1501 1505 default: 1506 LogFlowFunc(("LEAVE: pNetFlt (0x%p), NetEvent (%d)\n", pNetFlt, pNetPnPEvent->NetEvent)); 1502 1507 return NDIS_STATUS_SUCCESS; 1503 1508 } 1504 1509 1505 LogFlowFunc(("LEAVE: pNetFlt (0x%p), NetEvent (%d)\n", pNetFlt, pNetPnPEvent->NetEvent));1506 1510 } 1507 1511
Note:
See TracChangeset
for help on using the changeset viewer.