Changeset 74772 in vbox
- Timestamp:
- Oct 11, 2018 1:25:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/darwin/iokit.cpp
r73097 r74772 1689 1689 AssertBreak(darwinDictGetData(PropsRef, CFSTR("IOMACAddress"), &Mac, sizeof(Mac))); 1690 1690 1691 /* The BSD Name from the interface dictionary. */ 1691 /* The BSD Name from the interface dictionary. No assert here as the belkin USB-C gadget 1692 does not always end up with a BSD name, typically requiring replugging. */ 1692 1693 char szBSDName[RT_SIZEOFMEMB(DARWINETHERNIC, szBSDName)]; 1693 AssertBreak(darwinDictGetString(IfPropsRef, CFSTR("BSD Name"), szBSDName, sizeof(szBSDName))); 1694 if (RT_UNLIKELY(darwinDictGetString(IfPropsRef, CFSTR("BSD Name"), szBSDName, sizeof(szBSDName)))) 1695 { 1696 LogRelMax(32, ("DarwinGetEthernetControllers: Warning! Failed to get 'BSD Name'; provider class %s\n", szTmp)); 1697 break; 1698 } 1694 1699 1695 1700 /* Check if it's really wireless. */
Note:
See TracChangeset
for help on using the changeset viewer.