I have an SCNetworkInterfaceRef
through which i want to get all details of the interface i was able to bsd name,type mac address but unable to get hiddenConfiguration
(hiddenConfiguration is bool value )
prefrencePlist path/Library/Preferences/SystemConfiguration/preferences.plist
SCNetworkInterfaceRef interface = SCNetworkServiceGetInterface(service);
NSString *type = (__bridge NSString*) SCNetworkInterfaceGetInterfaceType(interface)
NSString *bsd = (__bridge NSString*) SCNetworkInterfaceGetBSDName(interface);
NSString *m = (__bridge NSString*) SCNetworkInterfaceGetHardwareAddressString(interface);
How to get hidden configuration value
Any suggestions would be most appreciated.