Changeset 106028 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Sep 12, 2024 11:32:11 AM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164777
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r106026 r106028 10040 10040 } 10041 10041 #endif /* VBOX_WITH_CLOUD_NET */ 10042 10042 10043 /* Terminate host interface networking. If pUVM is NULL, we've been 10043 10044 * manually called from powerUpThread() either before calling … … 10858 10859 AssertReturn(isWriteLockOnCurrentThread(), E_FAIL); 10859 10860 10861 #if (defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) && !defined(VBOX_WITH_NETFLT) 10860 10862 /* 10861 * host interface termination handling10863 * Host TAP interface termination handling. 10862 10864 */ 10863 10865 ComPtr<IVirtualBox> pVirtualBox; … … 10899 10901 if (attachment == NetworkAttachmentType_Bridged) 10900 10902 { 10901 #if ((defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) && !defined(VBOX_WITH_NETFLT))10902 10903 HRESULT hrc2 = i_detachFromTapInterface(pNetworkAdapter); 10903 10904 if (FAILED(hrc2) && SUCCEEDED(hrc)) 10904 10905 hrc = hrc2; 10905 #endif /* (RT_OS_LINUX || RT_OS_FREEBSD) && !VBOX_WITH_NETFLT */10906 10906 } 10907 10907 } 10908 10908 10909 10909 return hrc; 10910 10911 #else 10912 /* Nothing to do here. */ 10913 return S_OK; 10914 #endif 10910 10915 } 10911 10916
Note:
See TracChangeset
for help on using the changeset viewer.