this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Stub some more stuff in SystemConfiguration

+13
+13
src/frameworks/SystemConfiguration/stubs.c
··· 20 20 const CFStringRef kSCConsoleSessionSystemSafeBoot = CFSTR("kCGSSessionSystemSafeBoot"); /* value is CFBoolean */ 21 21 const CFStringRef kSCConsoleSessionLoginwindowSafeLogin = CFSTR("kCGSSessionLoginwindowSafeLogin"); /* value is CFBoolean */ 22 22 23 + const CFStringRef kSCCompAnyRegex = CFSTR("[^/]+"); 24 + const CFStringRef kSCEntNetDNS = CFSTR("DNS"); 25 + 23 26 CFStringRef SCDynamicStoreKeyCreateNetworkGlobalEntity(CFAllocatorRef allocator, CFStringRef domain, CFStringRef entity) 24 27 { 25 28 STUB(); ··· 69 72 STUB(); 70 73 return FALSE; 71 74 }; 75 + 76 + CFStringRef SCDynamicStoreKeyCreateHostNames(CFAllocatorRef allocator) { 77 + STUB(); 78 + return NULL; 79 + }; 80 + 81 + CFStringRef SCDynamicStoreKeyCreateNetworkInterfaceEntity(CFAllocatorRef allocator, CFStringRef domain, CFStringRef ifname, CFStringRef entity) { 82 + STUB(); 83 + return NULL; 84 + };