Changeset 13690 in vbox
- Timestamp:
- Oct 30, 2008 9:09:50 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38654
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
r13654 r13690 149 149 /** Pointer to the device. */ 150 150 struct net_device volatile *pDev; 151 struct packet_type volatile *pPacketType; 152 struct notifier_block *pNotifier; 153 /** Whether we've need to set promiscuous mode when the interface comes up. */ 154 bool volatile fNeedSetPromiscuous; 155 /** Whether we've successfully put the interface into to promiscuous mode. 156 * This is for dealing with the ENETDOWN case. */ 157 bool volatile fSetPromiscuous; 158 /** The MAC address of the interface. */ 159 RTMAC Mac; 151 160 /** @} */ 152 161 # elif defined(RT_OS_SOLARIS) -
trunk/src/VBox/Main/ConsoleImpl.cpp
r13580 r13690 5818 5818 HRESULT Console::attachToHostInterface(INetworkAdapter *networkAdapter) 5819 5819 { 5820 #if !defined(RT_OS_LINUX) 5820 //#if !defined(RT_OS_LINUX) 5821 #if 1 5821 5822 /* 5822 5823 * Nothing to do here. … … 6005 6006 HRESULT Console::detachFromHostInterface(INetworkAdapter *networkAdapter) 6006 6007 { 6007 #if !defined(RT_OS_LINUX) 6008 //#if !defined(RT_OS_LINUX) 6009 #if 1 6008 6010 6009 6011 /* -
trunk/src/VBox/Main/ConsoleImpl2.cpp
r13657 r13690 1209 1209 strcpy(szDriverGUID , hostIFGuid.toString().raw()); 1210 1210 const char *pszTrunk = szDriverGUID; 1211 # elif defined(RT_OS_LINUX) 1212 /* @todo Check for malformed names. */ 1213 const char *pszTrunk = pszHifName; 1214 1211 1215 # else 1212 1216 # error "PORTME (VBOX_WITH_NETFLT)" … … 1284 1288 rc = CFGMR3InsertBytes(pCfg, "GUID", szDriverGUID, sizeof(szDriverGUID)); RC_CHECK(); 1285 1289 } 1290 #elif defined(RT_OS_LINUX) 1291 /// @todo aleksey: is there anything to be done here? 1286 1292 #else 1287 1293 # error "Port me"
Note:
See TracChangeset
for help on using the changeset viewer.