Changeset 101745 in vbox for trunk/src/VBox
- Timestamp:
- Nov 3, 2023 3:20:58 PM (13 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r101737 r101745 12809 12809 </attribute> 12810 12810 12811 <attribute name="supportedNet workAdapterPromiscModePolicies" type="NetworkAdapterPromiscModePolicy" safearray="yes" readonly="yes">12811 <attribute name="supportedNetAdpPromiscModePolicies" type="NetworkAdapterPromiscModePolicy" safearray="yes" readonly="yes"> 12812 12812 <desc> 12813 12813 Returns an array of officially supported values for enum <link to="NetworkAdapterPromiscModePolicy"/>, -
trunk/src/VBox/Main/include/PlatformPropertiesImpl.h
r101737 r101745 81 81 HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes) RT_OVERRIDE; 82 82 HRESULT getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aSupportedGuestOSTypes); 83 HRESULT getSupportedNet workAdapterPromiscModePolicies(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies);83 HRESULT getSupportedNetAdpPromiscModePolicies(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies); 84 84 HRESULT getSupportedNetworkAdapterTypes(std::vector<NetworkAdapterType_T> &aSupportedNetworkAdapterTypes) RT_OVERRIDE; 85 85 HRESULT getSupportedUartTypes(std::vector<UartType_T> &aSupportedUartTypes) RT_OVERRIDE; -
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r101741 r101745 729 729 } 730 730 731 HRESULT PlatformProperties::getSupportedNet workAdapterPromiscModePolicies(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies)731 HRESULT PlatformProperties::getSupportedNetAdpPromiscModePolicies(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies) 732 732 { 733 733 static const NetworkAdapterPromiscModePolicy_T aNetworkAdapterPromiscModePolicies[] =
Note:
See TracChangeset
for help on using the changeset viewer.