- Timestamp:
- Apr 7, 2010 8:28:41 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/solaris/NetIf-solaris.cpp
r26163 r28033 84 84 SolarisNICMap.insert(NICPair("iprb", "Intel 82557/58/59 Ethernet")); 85 85 SolarisNICMap.insert(NICPair("mxfe", "Macronix 98715 Fast Ethernet")); 86 SolarisNICMap.insert(NICPair("nfo", "Nvidia Gigabit Ethernet")); 86 87 SolarisNICMap.insert(NICPair("nge", "Nvidia Gigabit Ethernet")); 87 88 SolarisNICMap.insert(NICPair("pcelx", "3COM EtherLink III PCMCIA Ethernet")); … … 208 209 { 209 210 /* 211 * Skip IPSEC interfaces. It's at IP level. 212 */ 213 if (!strncmp(pszIface, "ip.tun", 6)) 214 return _B_FALSE; 215 216 /* 210 217 * Clip off the zone instance number from the interface name (if any). 211 218 */ … … 270 277 static int vboxSolarisAddPhysHostIface(di_node_t Node, di_minor_t Minor, void *pvHostNetworkInterfaceList) 271 278 { 279 NOREF(Minor); 280 272 281 /* 273 282 * Skip aggregations. … … 397 406 int NetIfGetConfigByName(PNETIFINFO pInfo) 398 407 { 408 NOREF(pInfo); 399 409 return VERR_NOT_IMPLEMENTED; 400 410 }
Note:
See TracChangeset
for help on using the changeset viewer.