haribo Posted February 15, 2007 Share Posted February 15, 2007 can´t find the APSL . need instructions , please help want change this: //--------------------------------------------------------------------------- // Returns true if the receiver of this method is the system's primary // network interface. bool IONetworkInterface::isPrimaryInterface() const { IOService * provider = getController(); bool isPrimary = true; if ( provider ) provider = provider->getProvider(); // Look for the built-in property in the ethernet entry. if ( provider && provider->getProperty( "built-in" ) && getUnitNumber()==0) { isPrimary = true; } return isPrimary; } What you might want to change is following to fit your needs: if ( provider && getUnitNumber()==0) { isPrimary = true; } Link to comment https://www.insanelymac.com/forum/topic/42458-semthex-maya-drm-and-the-primary-interface/ Share on other sites More sharing options...
haribo Posted February 15, 2007 Author Share Posted February 15, 2007 okay, its done, look at Maya Harry Bo Link to comment https://www.insanelymac.com/forum/topic/42458-semthex-maya-drm-and-the-primary-interface/#findComment-303880 Share on other sites More sharing options...
Recommended Posts