Changeset 62984 in vbox for trunk/src/VBox
- Timestamp:
- Aug 4, 2016 1:01:32 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109591
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r62980 r62984 650 650 static DECLCALLBACK(void) drvNATNetworkUp_SetPromiscuousMode(PPDMINETWORKUP pInterface, bool fPromiscuous) 651 651 { 652 RT_NOREF(pInterface, fPromiscuous) 652 RT_NOREF(pInterface, fPromiscuous); 653 653 LogFlow(("drvNATNetworkUp_SetPromiscuousMode: fPromiscuous=%d\n", fPromiscuous)); 654 654 /* nothing to do */ … … 870 870 slirp_get_timeout_ms(pThis->pNATState), 871 871 /* :fAlertable */ TRUE); 872 if ( (dwEvent < WSA_WAIT_EVENT_0 || dwEvent > WSA_WAIT_EVENT_0 + nFDs - 1) 872 AssertCompile(WSA_WAIT_EVENT_0 == 0); 873 if ( (/*dwEvent < WSA_WAIT_EVENT_0 ||*/ dwEvent > WSA_WAIT_EVENT_0 + nFDs - 1) 873 874 && dwEvent != WSA_WAIT_TIMEOUT && dwEvent != WSA_WAIT_IO_COMPLETION) 874 875 {
Note:
See TracChangeset
for help on using the changeset viewer.