SystemConfiguration Changes for Objective-C
SystemConfiguration
CaptiveNetwork.h
Added #def CN_DEPRECATION_NOTICE
Modified CNCopySupportedInterfaces()
Declaration | |
---|---|
From | CFArrayRef CNCopySupportedInterfaces ( void ); |
To | CFArrayRef _Nullable CNCopySupportedInterfaces ( void ); |
Modified CNMarkPortalOffline()
Declaration | |
---|---|
From | Boolean CNMarkPortalOffline ( CFStringRef interfaceName ); |
To | Boolean CNMarkPortalOffline ( CFStringRef _Nonnull interfaceName ); |
Modified CNMarkPortalOnline()
Declaration | |
---|---|
From | Boolean CNMarkPortalOnline ( CFStringRef interfaceName ); |
To | Boolean CNMarkPortalOnline ( CFStringRef _Nonnull interfaceName ); |
Modified CNSetSupportedSSIDs()
Declaration | |
---|---|
From | Boolean CNSetSupportedSSIDs ( CFArrayRef ssidArray ); |
To | Boolean CNSetSupportedSSIDs ( CFArrayRef _Nonnull ssidArray ); |
DHCPClientPreferences.h
Declaration | |
---|---|
From | UInt8 * DHCPClientPreferencesCopyApplicationOptions ( CFStringRef applicationID, CFIndex *count ); |
To | UInt8 * _Nullable DHCPClientPreferencesCopyApplicationOptions ( CFStringRef _Nonnull applicationID, CFIndex * _Nonnull count ); |
Declaration | |
---|---|
From | Boolean DHCPClientPreferencesSetApplicationOptions ( CFStringRef applicationID, UInt8 *options, CFIndex count ); |
To | Boolean DHCPClientPreferencesSetApplicationOptions ( CFStringRef _Nonnull applicationID, UInt8 * _Nullable options, CFIndex count ); |
SCDynamicStore.h
Modified SCDynamicStoreAddTemporaryValue()
Declaration | |
---|---|
From | Boolean SCDynamicStoreAddTemporaryValue ( SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value ); |
To | Boolean SCDynamicStoreAddTemporaryValue ( SCDynamicStoreRef _Nonnull store, CFStringRef _Nonnull key, CFPropertyListRef _Nonnull value ); |
Modified SCDynamicStoreAddValue()
Declaration | |
---|---|
From | Boolean SCDynamicStoreAddValue ( SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value ); |
To | Boolean SCDynamicStoreAddValue ( SCDynamicStoreRef _Nullable store, CFStringRef _Nonnull key, CFPropertyListRef _Nonnull value ); |
Modified SCDynamicStoreCopyKeyList()
Declaration | |
---|---|
From | CFArrayRef SCDynamicStoreCopyKeyList ( SCDynamicStoreRef store, CFStringRef pattern ); |
To | CFArrayRef _Nullable SCDynamicStoreCopyKeyList ( SCDynamicStoreRef _Nullable store, CFStringRef _Nonnull pattern ); |
Modified SCDynamicStoreCopyMultiple()
Declaration | |
---|---|
From | CFDictionaryRef SCDynamicStoreCopyMultiple ( SCDynamicStoreRef store, CFArrayRef keys, CFArrayRef patterns ); |
To | CFDictionaryRef _Nullable SCDynamicStoreCopyMultiple ( SCDynamicStoreRef _Nullable store, CFArrayRef _Nullable keys, CFArrayRef _Nullable patterns ); |
Modified SCDynamicStoreCopyNotifiedKeys()
Declaration | |
---|---|
From | CFArrayRef SCDynamicStoreCopyNotifiedKeys ( SCDynamicStoreRef store ); |
To | CFArrayRef _Nullable SCDynamicStoreCopyNotifiedKeys ( SCDynamicStoreRef _Nonnull store ); |
Modified SCDynamicStoreCopyValue()
Declaration | |
---|---|
From | CFPropertyListRef SCDynamicStoreCopyValue ( SCDynamicStoreRef store, CFStringRef key ); |
To | CFPropertyListRef _Nullable SCDynamicStoreCopyValue ( SCDynamicStoreRef _Nullable store, CFStringRef _Nonnull key ); |
Modified SCDynamicStoreCreate()
Declaration | |
---|---|
From | SCDynamicStoreRef SCDynamicStoreCreate ( CFAllocatorRef allocator, CFStringRef name, SCDynamicStoreCallBack callout, SCDynamicStoreContext *context ); |
To | SCDynamicStoreRef _Nullable SCDynamicStoreCreate ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull name, SCDynamicStoreCallBack _Nullable callout, SCDynamicStoreContext * _Nullable context ); |
Modified SCDynamicStoreCreateRunLoopSource()
Declaration | |
---|---|
From | CFRunLoopSourceRef SCDynamicStoreCreateRunLoopSource ( CFAllocatorRef allocator, SCDynamicStoreRef store, CFIndex order ); |
To | CFRunLoopSourceRef _Nullable SCDynamicStoreCreateRunLoopSource ( CFAllocatorRef _Nullable allocator, SCDynamicStoreRef _Nonnull store, CFIndex order ); |
Modified SCDynamicStoreCreateWithOptions()
Declaration | |
---|---|
From | SCDynamicStoreRef SCDynamicStoreCreateWithOptions ( CFAllocatorRef allocator, CFStringRef name, CFDictionaryRef storeOptions, SCDynamicStoreCallBack callout, SCDynamicStoreContext *context ); |
To | SCDynamicStoreRef _Nullable SCDynamicStoreCreateWithOptions ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull name, CFDictionaryRef _Nullable storeOptions, SCDynamicStoreCallBack _Nullable callout, SCDynamicStoreContext * _Nullable context ); |
Modified SCDynamicStoreNotifyValue()
Declaration | |
---|---|
From | Boolean SCDynamicStoreNotifyValue ( SCDynamicStoreRef store, CFStringRef key ); |
To | Boolean SCDynamicStoreNotifyValue ( SCDynamicStoreRef _Nullable store, CFStringRef _Nonnull key ); |
Modified SCDynamicStoreRemoveValue()
Declaration | |
---|---|
From | Boolean SCDynamicStoreRemoveValue ( SCDynamicStoreRef store, CFStringRef key ); |
To | Boolean SCDynamicStoreRemoveValue ( SCDynamicStoreRef _Nullable store, CFStringRef _Nonnull key ); |
Modified SCDynamicStoreSetDispatchQueue()
Declaration | |
---|---|
From | Boolean SCDynamicStoreSetDispatchQueue ( SCDynamicStoreRef store, dispatch_queue_t queue ); |
To | Boolean SCDynamicStoreSetDispatchQueue ( SCDynamicStoreRef _Nonnull store, dispatch_queue_t _Nullable queue ); |
Modified SCDynamicStoreSetMultiple()
Declaration | |
---|---|
From | Boolean SCDynamicStoreSetMultiple ( SCDynamicStoreRef store, CFDictionaryRef keysToSet, CFArrayRef keysToRemove, CFArrayRef keysToNotify ); |
To | Boolean SCDynamicStoreSetMultiple ( SCDynamicStoreRef _Nullable store, CFDictionaryRef _Nullable keysToSet, CFArrayRef _Nullable keysToRemove, CFArrayRef _Nullable keysToNotify ); |
Modified SCDynamicStoreSetNotificationKeys()
Declaration | |
---|---|
From | Boolean SCDynamicStoreSetNotificationKeys ( SCDynamicStoreRef store, CFArrayRef keys, CFArrayRef patterns ); |
To | Boolean SCDynamicStoreSetNotificationKeys ( SCDynamicStoreRef _Nonnull store, CFArrayRef _Nullable keys, CFArrayRef _Nullable patterns ); |
Modified SCDynamicStoreSetValue()
Declaration | |
---|---|
From | Boolean SCDynamicStoreSetValue ( SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value ); |
To | Boolean SCDynamicStoreSetValue ( SCDynamicStoreRef _Nullable store, CFStringRef _Nonnull key, CFPropertyListRef _Nonnull value ); |
SCDynamicStoreCopyDHCPInfo.h
Modified DHCPInfoGetLeaseExpirationTime()
Declaration | |
---|---|
From | CFDateRef DHCPInfoGetLeaseExpirationTime ( CFDictionaryRef info ); |
To | CFDateRef _Nullable DHCPInfoGetLeaseExpirationTime ( CFDictionaryRef _Nonnull info ); |
Modified DHCPInfoGetLeaseStartTime()
Declaration | |
---|---|
From | CFDateRef DHCPInfoGetLeaseStartTime ( CFDictionaryRef info ); |
To | CFDateRef _Nullable DHCPInfoGetLeaseStartTime ( CFDictionaryRef _Nonnull info ); |
Modified DHCPInfoGetOptionData()
Declaration | |
---|---|
From | CFDataRef DHCPInfoGetOptionData ( CFDictionaryRef info, UInt8 code ); |
To | CFDataRef _Nullable DHCPInfoGetOptionData ( CFDictionaryRef _Nonnull info, UInt8 code ); |
Modified SCDynamicStoreCopyDHCPInfo()
Declaration | |
---|---|
From | CFDictionaryRef SCDynamicStoreCopyDHCPInfo ( SCDynamicStoreRef store, CFStringRef serviceID ); |
To | CFDictionaryRef _Nullable SCDynamicStoreCopyDHCPInfo ( SCDynamicStoreRef _Nullable store, CFStringRef _Nullable serviceID ); |
SCDynamicStoreCopySpecific.h
Modified SCDynamicStoreCopyComputerName()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreCopyComputerName ( SCDynamicStoreRef store, CFStringEncoding *nameEncoding ); |
To | CFStringRef _Nullable SCDynamicStoreCopyComputerName ( SCDynamicStoreRef _Nullable store, CFStringEncoding * _Nullable nameEncoding ); |
Modified SCDynamicStoreCopyConsoleUser()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreCopyConsoleUser ( SCDynamicStoreRef store, uid_t *uid, gid_t *gid ); |
To | CFStringRef _Nullable SCDynamicStoreCopyConsoleUser ( SCDynamicStoreRef _Nullable store, uid_t * _Nullable uid, gid_t * _Nullable gid ); |
Modified SCDynamicStoreCopyLocalHostName()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreCopyLocalHostName ( SCDynamicStoreRef store ); |
To | CFStringRef _Nullable SCDynamicStoreCopyLocalHostName ( SCDynamicStoreRef _Nullable store ); |
Modified SCDynamicStoreCopyLocation()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreCopyLocation ( SCDynamicStoreRef store ); |
To | CFStringRef _Nullable SCDynamicStoreCopyLocation ( SCDynamicStoreRef _Nullable store ); |
Modified SCDynamicStoreCopyProxies()
Declaration | |
---|---|
From | CFDictionaryRef SCDynamicStoreCopyProxies ( SCDynamicStoreRef store ); |
To | CFDictionaryRef _Nullable SCDynamicStoreCopyProxies ( SCDynamicStoreRef _Nullable store ); |
SCDynamicStoreKey.h
Modified SCDynamicStoreKeyCreate()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreate ( CFAllocatorRef allocator, CFStringRef fmt, ... ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreate ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull fmt, ... ); |
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateComputerName ( CFAllocatorRef allocator ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateComputerName ( CFAllocatorRef _Nullable allocator ); |
Modified SCDynamicStoreKeyCreateConsoleUser()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateConsoleUser ( CFAllocatorRef allocator ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateConsoleUser ( CFAllocatorRef _Nullable allocator ); |
Modified SCDynamicStoreKeyCreateHostNames()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateHostNames ( CFAllocatorRef allocator ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateHostNames ( CFAllocatorRef _Nullable allocator ); |
Modified SCDynamicStoreKeyCreateLocation()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateLocation ( CFAllocatorRef allocator ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateLocation ( CFAllocatorRef _Nullable allocator ); |
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateNetworkGlobalEntity ( CFAllocatorRef allocator, CFStringRef domain, CFStringRef entity ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateNetworkGlobalEntity ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull domain, CFStringRef _Nonnull entity ); |
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateNetworkInterface ( CFAllocatorRef allocator, CFStringRef domain ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateNetworkInterface ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull domain ); |
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateNetworkInterfaceEntity ( CFAllocatorRef allocator, CFStringRef domain, CFStringRef ifname, CFStringRef entity ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateNetworkInterfaceEntity ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull domain, CFStringRef _Nonnull ifname, CFStringRef _Nullable entity ); |
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateNetworkServiceEntity ( CFAllocatorRef allocator, CFStringRef domain, CFStringRef serviceID, CFStringRef entity ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateNetworkServiceEntity ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull domain, CFStringRef _Nonnull serviceID, CFStringRef _Nullable entity ); |
Modified SCDynamicStoreKeyCreateProxies()
Declaration | |
---|---|
From | CFStringRef SCDynamicStoreKeyCreateProxies ( CFAllocatorRef allocator ); |
To | CFStringRef _Nonnull SCDynamicStoreKeyCreateProxies ( CFAllocatorRef _Nullable allocator ); |
SCNetwork.h
Declaration | |
---|---|
From | Boolean SCNetworkCheckReachabilityByAddress ( const struct sockaddr *address, socklen_t addrlen, SCNetworkConnectionFlags *flags ); |
To | Boolean SCNetworkCheckReachabilityByAddress ( const struct sockaddr * _Nonnull address, socklen_t addrlen, SCNetworkConnectionFlags * _Nonnull flags ); |
Modified SCNetworkCheckReachabilityByName()
Declaration | |
---|---|
From | Boolean SCNetworkCheckReachabilityByName ( const char *nodename, SCNetworkConnectionFlags *flags ); |
To | Boolean SCNetworkCheckReachabilityByName ( const char * _Nonnull nodename, SCNetworkConnectionFlags * _Nonnull flags ); |
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceRefreshConfiguration ( CFStringRef ifName ); |
To | Boolean SCNetworkInterfaceRefreshConfiguration ( CFStringRef _Nonnull ifName ); |
SCNetworkConfiguration.h
Modified SCBondInterfaceCopyAll()
Declaration | |
---|---|
From | CFArrayRef SCBondInterfaceCopyAll ( SCPreferencesRef prefs ); |
To | CFArrayRef _Nonnull SCBondInterfaceCopyAll ( SCPreferencesRef _Nonnull prefs ); |
Declaration | |
---|---|
From | CFArrayRef SCBondInterfaceCopyAvailableMemberInterfaces ( SCPreferencesRef prefs ); |
To | CFArrayRef _Nonnull SCBondInterfaceCopyAvailableMemberInterfaces ( SCPreferencesRef _Nonnull prefs ); |
Modified SCBondInterfaceCopyStatus()
Declaration | |
---|---|
From | SCBondStatusRef SCBondInterfaceCopyStatus ( SCBondInterfaceRef bond ); |
To | SCBondStatusRef _Nullable SCBondInterfaceCopyStatus ( SCBondInterfaceRef _Nonnull bond ); |
Modified SCBondInterfaceCreate()
Declaration | |
---|---|
From | SCBondInterfaceRef SCBondInterfaceCreate ( SCPreferencesRef prefs ); |
To | SCBondInterfaceRef _Nullable SCBondInterfaceCreate ( SCPreferencesRef _Nonnull prefs ); |
Modified SCBondInterfaceGetMemberInterfaces()
Declaration | |
---|---|
From | CFArrayRef SCBondInterfaceGetMemberInterfaces ( SCBondInterfaceRef bond ); |
To | CFArrayRef _Nullable SCBondInterfaceGetMemberInterfaces ( SCBondInterfaceRef _Nonnull bond ); |
Modified SCBondInterfaceGetOptions()
Declaration | |
---|---|
From | CFDictionaryRef SCBondInterfaceGetOptions ( SCBondInterfaceRef bond ); |
To | CFDictionaryRef _Nullable SCBondInterfaceGetOptions ( SCBondInterfaceRef _Nonnull bond ); |
Modified SCBondInterfaceRemove()
Declaration | |
---|---|
From | Boolean SCBondInterfaceRemove ( SCBondInterfaceRef bond ); |
To | Boolean SCBondInterfaceRemove ( SCBondInterfaceRef _Nonnull bond ); |
Declaration | |
---|---|
From | Boolean SCBondInterfaceSetLocalizedDisplayName ( SCBondInterfaceRef bond, CFStringRef newName ); |
To | Boolean SCBondInterfaceSetLocalizedDisplayName ( SCBondInterfaceRef _Nonnull bond, CFStringRef _Nonnull newName ); |
Modified SCBondInterfaceSetMemberInterfaces()
Declaration | |
---|---|
From | Boolean SCBondInterfaceSetMemberInterfaces ( SCBondInterfaceRef bond, CFArrayRef members ); |
To | Boolean SCBondInterfaceSetMemberInterfaces ( SCBondInterfaceRef _Nonnull bond, CFArrayRef _Nonnull members ); |
Modified SCBondInterfaceSetOptions()
Declaration | |
---|---|
From | Boolean SCBondInterfaceSetOptions ( SCBondInterfaceRef bond, CFDictionaryRef newOptions ); |
To | Boolean SCBondInterfaceSetOptions ( SCBondInterfaceRef _Nonnull bond, CFDictionaryRef _Nonnull newOptions ); |
Modified SCBondStatusGetInterfaceStatus()
Declaration | |
---|---|
From | CFDictionaryRef SCBondStatusGetInterfaceStatus ( SCBondStatusRef bondStatus, SCNetworkInterfaceRef interface ); |
To | CFDictionaryRef _Nullable SCBondStatusGetInterfaceStatus ( SCBondStatusRef _Nonnull bondStatus, SCNetworkInterfaceRef _Nullable interface ); |
Modified SCBondStatusGetMemberInterfaces()
Declaration | |
---|---|
From | CFArrayRef SCBondStatusGetMemberInterfaces ( SCBondStatusRef bondStatus ); |
To | CFArrayRef _Nullable SCBondStatusGetMemberInterfaces ( SCBondStatusRef _Nonnull bondStatus ); |
Modified SCNetworkInterfaceCopyAll()
Declaration | |
---|---|
From | CFArrayRef SCNetworkInterfaceCopyAll ( void ); |
To | CFArrayRef _Nonnull SCNetworkInterfaceCopyAll ( void ); |
Modified SCNetworkInterfaceCopyMediaOptions()
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceCopyMediaOptions ( SCNetworkInterfaceRef interface, CFDictionaryRef *current, CFDictionaryRef *active, CFArrayRef *available, Boolean filter ); |
To | Boolean SCNetworkInterfaceCopyMediaOptions ( SCNetworkInterfaceRef _Nonnull interface, CFDictionaryRef _Nullable * _Nullable current, CFDictionaryRef _Nullable * _Nullable active, CFArrayRef _Nullable * _Nullable available, Boolean filter ); |
Declaration | |
---|---|
From | CFArrayRef SCNetworkInterfaceCopyMediaSubTypeOptions ( CFArrayRef available, CFStringRef subType ); |
To | CFArrayRef _Nullable SCNetworkInterfaceCopyMediaSubTypeOptions ( CFArrayRef _Nonnull available, CFStringRef _Nonnull subType ); |
Declaration | |
---|---|
From | CFArrayRef SCNetworkInterfaceCopyMediaSubTypes ( CFArrayRef available ); |
To | CFArrayRef _Nullable SCNetworkInterfaceCopyMediaSubTypes ( CFArrayRef _Nonnull available ); |
Modified SCNetworkInterfaceCopyMTU()
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceCopyMTU ( SCNetworkInterfaceRef interface, int *mtu_cur, int *mtu_min, int *mtu_max ); |
To | Boolean SCNetworkInterfaceCopyMTU ( SCNetworkInterfaceRef _Nonnull interface, int * _Nullable mtu_cur, int * _Nullable mtu_min, int * _Nullable mtu_max ); |
Declaration | |
---|---|
From | SCNetworkInterfaceRef SCNetworkInterfaceCreateWithInterface ( SCNetworkInterfaceRef interface, CFStringRef interfaceType ); |
To | SCNetworkInterfaceRef _Nullable SCNetworkInterfaceCreateWithInterface ( SCNetworkInterfaceRef _Nonnull interface, CFStringRef _Nonnull interfaceType ); |
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceForceConfigurationRefresh ( SCNetworkInterfaceRef interface ); |
To | Boolean SCNetworkInterfaceForceConfigurationRefresh ( SCNetworkInterfaceRef _Nonnull interface ); |
Modified SCNetworkInterfaceGetBSDName()
Declaration | |
---|---|
From | CFStringRef SCNetworkInterfaceGetBSDName ( SCNetworkInterfaceRef interface ); |
To | CFStringRef _Nullable SCNetworkInterfaceGetBSDName ( SCNetworkInterfaceRef _Nonnull interface ); |
Modified SCNetworkInterfaceGetConfiguration()
Declaration | |
---|---|
From | CFDictionaryRef SCNetworkInterfaceGetConfiguration ( SCNetworkInterfaceRef interface ); |
To | CFDictionaryRef _Nullable SCNetworkInterfaceGetConfiguration ( SCNetworkInterfaceRef _Nonnull interface ); |
Declaration | |
---|---|
From | CFDictionaryRef SCNetworkInterfaceGetExtendedConfiguration ( SCNetworkInterfaceRef interface, CFStringRef extendedType ); |
To | CFDictionaryRef _Nullable SCNetworkInterfaceGetExtendedConfiguration ( SCNetworkInterfaceRef _Nonnull interface, CFStringRef _Nonnull extendedType ); |
Declaration | |
---|---|
From | CFStringRef SCNetworkInterfaceGetHardwareAddressString ( SCNetworkInterfaceRef interface ); |
To | CFStringRef _Nullable SCNetworkInterfaceGetHardwareAddressString ( SCNetworkInterfaceRef _Nonnull interface ); |
Modified SCNetworkInterfaceGetInterface()
Declaration | |
---|---|
From | SCNetworkInterfaceRef SCNetworkInterfaceGetInterface ( SCNetworkInterfaceRef interface ); |
To | SCNetworkInterfaceRef _Nullable SCNetworkInterfaceGetInterface ( SCNetworkInterfaceRef _Nonnull interface ); |
Modified SCNetworkInterfaceGetInterfaceType()
Declaration | |
---|---|
From | CFStringRef SCNetworkInterfaceGetInterfaceType ( SCNetworkInterfaceRef interface ); |
To | CFStringRef _Nullable SCNetworkInterfaceGetInterfaceType ( SCNetworkInterfaceRef _Nonnull interface ); |
Declaration | |
---|---|
From | CFStringRef SCNetworkInterfaceGetLocalizedDisplayName ( SCNetworkInterfaceRef interface ); |
To | CFStringRef _Nullable SCNetworkInterfaceGetLocalizedDisplayName ( SCNetworkInterfaceRef _Nonnull interface ); |
Declaration | |
---|---|
From | CFArrayRef SCNetworkInterfaceGetSupportedInterfaceTypes ( SCNetworkInterfaceRef interface ); |
To | CFArrayRef _Nullable SCNetworkInterfaceGetSupportedInterfaceTypes ( SCNetworkInterfaceRef _Nonnull interface ); |
Declaration | |
---|---|
From | CFArrayRef SCNetworkInterfaceGetSupportedProtocolTypes ( SCNetworkInterfaceRef interface ); |
To | CFArrayRef _Nullable SCNetworkInterfaceGetSupportedProtocolTypes ( SCNetworkInterfaceRef _Nonnull interface ); |
Modified SCNetworkInterfaceSetConfiguration()
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceSetConfiguration ( SCNetworkInterfaceRef interface, CFDictionaryRef config ); |
To | Boolean SCNetworkInterfaceSetConfiguration ( SCNetworkInterfaceRef _Nonnull interface, CFDictionaryRef _Nonnull config ); |
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceSetExtendedConfiguration ( SCNetworkInterfaceRef interface, CFStringRef extendedType, CFDictionaryRef config ); |
To | Boolean SCNetworkInterfaceSetExtendedConfiguration ( SCNetworkInterfaceRef _Nonnull interface, CFStringRef _Nonnull extendedType, CFDictionaryRef _Nonnull config ); |
Modified SCNetworkInterfaceSetMediaOptions()
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceSetMediaOptions ( SCNetworkInterfaceRef interface, CFStringRef subtype, CFArrayRef options ); |
To | Boolean SCNetworkInterfaceSetMediaOptions ( SCNetworkInterfaceRef _Nonnull interface, CFStringRef _Nonnull subtype, CFArrayRef _Nonnull options ); |
Modified SCNetworkInterfaceSetMTU()
Declaration | |
---|---|
From | Boolean SCNetworkInterfaceSetMTU ( SCNetworkInterfaceRef interface, int mtu ); |
To | Boolean SCNetworkInterfaceSetMTU ( SCNetworkInterfaceRef _Nonnull interface, int mtu ); |
Modified SCNetworkProtocolGetConfiguration()
Declaration | |
---|---|
From | CFDictionaryRef SCNetworkProtocolGetConfiguration ( SCNetworkProtocolRef protocol ); |
To | CFDictionaryRef _Nullable SCNetworkProtocolGetConfiguration ( SCNetworkProtocolRef _Nonnull protocol ); |
Modified SCNetworkProtocolGetEnabled()
Declaration | |
---|---|
From | Boolean SCNetworkProtocolGetEnabled ( SCNetworkProtocolRef protocol ); |
To | Boolean SCNetworkProtocolGetEnabled ( SCNetworkProtocolRef _Nonnull protocol ); |
Modified SCNetworkProtocolGetProtocolType()
Declaration | |
---|---|
From | CFStringRef SCNetworkProtocolGetProtocolType ( SCNetworkProtocolRef protocol ); |
To | CFStringRef _Nullable SCNetworkProtocolGetProtocolType ( SCNetworkProtocolRef _Nonnull protocol ); |
Modified SCNetworkProtocolSetConfiguration()
Declaration | |
---|---|
From | Boolean SCNetworkProtocolSetConfiguration ( SCNetworkProtocolRef protocol, CFDictionaryRef config ); |
To | Boolean SCNetworkProtocolSetConfiguration ( SCNetworkProtocolRef _Nonnull protocol, CFDictionaryRef _Nonnull config ); |
Modified SCNetworkProtocolSetEnabled()
Declaration | |
---|---|
From | Boolean SCNetworkProtocolSetEnabled ( SCNetworkProtocolRef protocol, Boolean enabled ); |
To | Boolean SCNetworkProtocolSetEnabled ( SCNetworkProtocolRef _Nonnull protocol, Boolean enabled ); |
Modified SCNetworkServiceAddProtocolType()
Declaration | |
---|---|
From | Boolean SCNetworkServiceAddProtocolType ( SCNetworkServiceRef service, CFStringRef protocolType ); |
To | Boolean SCNetworkServiceAddProtocolType ( SCNetworkServiceRef _Nonnull service, CFStringRef _Nonnull protocolType ); |
Modified SCNetworkServiceCopy()
Declaration | |
---|---|
From | SCNetworkServiceRef SCNetworkServiceCopy ( SCPreferencesRef prefs, CFStringRef serviceID ); |
To | SCNetworkServiceRef _Nullable SCNetworkServiceCopy ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull serviceID ); |
Modified SCNetworkServiceCopyAll()
Declaration | |
---|---|
From | CFArrayRef SCNetworkServiceCopyAll ( SCPreferencesRef prefs ); |
To | CFArrayRef _Nullable SCNetworkServiceCopyAll ( SCPreferencesRef _Nonnull prefs ); |
Modified SCNetworkServiceCopyProtocol()
Declaration | |
---|---|
From | SCNetworkProtocolRef SCNetworkServiceCopyProtocol ( SCNetworkServiceRef service, CFStringRef protocolType ); |
To | SCNetworkProtocolRef _Nullable SCNetworkServiceCopyProtocol ( SCNetworkServiceRef _Nonnull service, CFStringRef _Nonnull protocolType ); |
Modified SCNetworkServiceCopyProtocols()
Declaration | |
---|---|
From | CFArrayRef SCNetworkServiceCopyProtocols ( SCNetworkServiceRef service ); |
To | CFArrayRef _Nullable SCNetworkServiceCopyProtocols ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceCreate()
Declaration | |
---|---|
From | SCNetworkServiceRef SCNetworkServiceCreate ( SCPreferencesRef prefs, SCNetworkInterfaceRef interface ); |
To | SCNetworkServiceRef _Nullable SCNetworkServiceCreate ( SCPreferencesRef _Nonnull prefs, SCNetworkInterfaceRef _Nonnull interface ); |
Declaration | |
---|---|
From | Boolean SCNetworkServiceEstablishDefaultConfiguration ( SCNetworkServiceRef service ); |
To | Boolean SCNetworkServiceEstablishDefaultConfiguration ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceGetEnabled()
Declaration | |
---|---|
From | Boolean SCNetworkServiceGetEnabled ( SCNetworkServiceRef service ); |
To | Boolean SCNetworkServiceGetEnabled ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceGetInterface()
Declaration | |
---|---|
From | SCNetworkInterfaceRef SCNetworkServiceGetInterface ( SCNetworkServiceRef service ); |
To | SCNetworkInterfaceRef _Nullable SCNetworkServiceGetInterface ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceGetName()
Declaration | |
---|---|
From | CFStringRef SCNetworkServiceGetName ( SCNetworkServiceRef service ); |
To | CFStringRef _Nullable SCNetworkServiceGetName ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceGetServiceID()
Declaration | |
---|---|
From | CFStringRef SCNetworkServiceGetServiceID ( SCNetworkServiceRef service ); |
To | CFStringRef _Nullable SCNetworkServiceGetServiceID ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceRemove()
Declaration | |
---|---|
From | Boolean SCNetworkServiceRemove ( SCNetworkServiceRef service ); |
To | Boolean SCNetworkServiceRemove ( SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkServiceRemoveProtocolType()
Declaration | |
---|---|
From | Boolean SCNetworkServiceRemoveProtocolType ( SCNetworkServiceRef service, CFStringRef protocolType ); |
To | Boolean SCNetworkServiceRemoveProtocolType ( SCNetworkServiceRef _Nonnull service, CFStringRef _Nonnull protocolType ); |
Modified SCNetworkServiceSetEnabled()
Declaration | |
---|---|
From | Boolean SCNetworkServiceSetEnabled ( SCNetworkServiceRef service, Boolean enabled ); |
To | Boolean SCNetworkServiceSetEnabled ( SCNetworkServiceRef _Nonnull service, Boolean enabled ); |
Modified SCNetworkServiceSetName()
Declaration | |
---|---|
From | Boolean SCNetworkServiceSetName ( SCNetworkServiceRef service, CFStringRef name ); |
To | Boolean SCNetworkServiceSetName ( SCNetworkServiceRef _Nonnull service, CFStringRef _Nonnull name ); |
Modified SCNetworkSetAddService()
Declaration | |
---|---|
From | Boolean SCNetworkSetAddService ( SCNetworkSetRef set, SCNetworkServiceRef service ); |
To | Boolean SCNetworkSetAddService ( SCNetworkSetRef _Nonnull set, SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkSetContainsInterface()
Declaration | |
---|---|
From | Boolean SCNetworkSetContainsInterface ( SCNetworkSetRef set, SCNetworkInterfaceRef interface ); |
To | Boolean SCNetworkSetContainsInterface ( SCNetworkSetRef _Nonnull set, SCNetworkInterfaceRef _Nonnull interface ); |
Modified SCNetworkSetCopy()
Declaration | |
---|---|
From | SCNetworkSetRef SCNetworkSetCopy ( SCPreferencesRef prefs, CFStringRef setID ); |
To | SCNetworkSetRef _Nullable SCNetworkSetCopy ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull setID ); |
Modified SCNetworkSetCopyAll()
Declaration | |
---|---|
From | CFArrayRef SCNetworkSetCopyAll ( SCPreferencesRef prefs ); |
To | CFArrayRef _Nullable SCNetworkSetCopyAll ( SCPreferencesRef _Nonnull prefs ); |
Modified SCNetworkSetCopyCurrent()
Declaration | |
---|---|
From | SCNetworkSetRef SCNetworkSetCopyCurrent ( SCPreferencesRef prefs ); |
To | SCNetworkSetRef _Nullable SCNetworkSetCopyCurrent ( SCPreferencesRef _Nonnull prefs ); |
Modified SCNetworkSetCopyServices()
Declaration | |
---|---|
From | CFArrayRef SCNetworkSetCopyServices ( SCNetworkSetRef set ); |
To | CFArrayRef _Nullable SCNetworkSetCopyServices ( SCNetworkSetRef _Nonnull set ); |
Modified SCNetworkSetCreate()
Declaration | |
---|---|
From | SCNetworkSetRef SCNetworkSetCreate ( SCPreferencesRef prefs ); |
To | SCNetworkSetRef _Nullable SCNetworkSetCreate ( SCPreferencesRef _Nonnull prefs ); |
Modified SCNetworkSetGetName()
Declaration | |
---|---|
From | CFStringRef SCNetworkSetGetName ( SCNetworkSetRef set ); |
To | CFStringRef _Nullable SCNetworkSetGetName ( SCNetworkSetRef _Nonnull set ); |
Modified SCNetworkSetGetServiceOrder()
Declaration | |
---|---|
From | CFArrayRef SCNetworkSetGetServiceOrder ( SCNetworkSetRef set ); |
To | CFArrayRef _Nullable SCNetworkSetGetServiceOrder ( SCNetworkSetRef _Nonnull set ); |
Modified SCNetworkSetGetSetID()
Declaration | |
---|---|
From | CFStringRef SCNetworkSetGetSetID ( SCNetworkSetRef set ); |
To | CFStringRef _Nullable SCNetworkSetGetSetID ( SCNetworkSetRef _Nonnull set ); |
Modified SCNetworkSetRemove()
Declaration | |
---|---|
From | Boolean SCNetworkSetRemove ( SCNetworkSetRef set ); |
To | Boolean SCNetworkSetRemove ( SCNetworkSetRef _Nonnull set ); |
Modified SCNetworkSetRemoveService()
Declaration | |
---|---|
From | Boolean SCNetworkSetRemoveService ( SCNetworkSetRef set, SCNetworkServiceRef service ); |
To | Boolean SCNetworkSetRemoveService ( SCNetworkSetRef _Nonnull set, SCNetworkServiceRef _Nonnull service ); |
Modified SCNetworkSetSetCurrent()
Declaration | |
---|---|
From | Boolean SCNetworkSetSetCurrent ( SCNetworkSetRef set ); |
To | Boolean SCNetworkSetSetCurrent ( SCNetworkSetRef _Nonnull set ); |
Modified SCNetworkSetSetName()
Declaration | |
---|---|
From | Boolean SCNetworkSetSetName ( SCNetworkSetRef set, CFStringRef name ); |
To | Boolean SCNetworkSetSetName ( SCNetworkSetRef _Nonnull set, CFStringRef _Nonnull name ); |
Modified SCNetworkSetSetServiceOrder()
Declaration | |
---|---|
From | Boolean SCNetworkSetSetServiceOrder ( SCNetworkSetRef set, CFArrayRef newOrder ); |
To | Boolean SCNetworkSetSetServiceOrder ( SCNetworkSetRef _Nonnull set, CFArrayRef _Nonnull newOrder ); |
Modified SCVLANInterfaceCopyAll()
Declaration | |
---|---|
From | CFArrayRef SCVLANInterfaceCopyAll ( SCPreferencesRef prefs ); |
To | CFArrayRef _Nonnull SCVLANInterfaceCopyAll ( SCPreferencesRef _Nonnull prefs ); |
Declaration | |
---|---|
From | CFArrayRef SCVLANInterfaceCopyAvailablePhysicalInterfaces ( void ); |
To | CFArrayRef _Nonnull SCVLANInterfaceCopyAvailablePhysicalInterfaces ( void ); |
Modified SCVLANInterfaceCreate()
Declaration | |
---|---|
From | SCVLANInterfaceRef SCVLANInterfaceCreate ( SCPreferencesRef prefs, SCNetworkInterfaceRef physical, CFNumberRef tag ); |
To | SCVLANInterfaceRef _Nullable SCVLANInterfaceCreate ( SCPreferencesRef _Nonnull prefs, SCNetworkInterfaceRef _Nonnull physical, CFNumberRef _Nonnull tag ); |
Modified SCVLANInterfaceGetOptions()
Declaration | |
---|---|
From | CFDictionaryRef SCVLANInterfaceGetOptions ( SCVLANInterfaceRef vlan ); |
To | CFDictionaryRef _Nullable SCVLANInterfaceGetOptions ( SCVLANInterfaceRef _Nonnull vlan ); |
Declaration | |
---|---|
From | SCNetworkInterfaceRef SCVLANInterfaceGetPhysicalInterface ( SCVLANInterfaceRef vlan ); |
To | SCNetworkInterfaceRef _Nullable SCVLANInterfaceGetPhysicalInterface ( SCVLANInterfaceRef _Nonnull vlan ); |
Modified SCVLANInterfaceGetTag()
Declaration | |
---|---|
From | CFNumberRef SCVLANInterfaceGetTag ( SCVLANInterfaceRef vlan ); |
To | CFNumberRef _Nullable SCVLANInterfaceGetTag ( SCVLANInterfaceRef _Nonnull vlan ); |
Modified SCVLANInterfaceRemove()
Declaration | |
---|---|
From | Boolean SCVLANInterfaceRemove ( SCVLANInterfaceRef vlan ); |
To | Boolean SCVLANInterfaceRemove ( SCVLANInterfaceRef _Nonnull vlan ); |
Declaration | |
---|---|
From | Boolean SCVLANInterfaceSetLocalizedDisplayName ( SCVLANInterfaceRef vlan, CFStringRef newName ); |
To | Boolean SCVLANInterfaceSetLocalizedDisplayName ( SCVLANInterfaceRef _Nonnull vlan, CFStringRef _Nonnull newName ); |
Modified SCVLANInterfaceSetOptions()
Declaration | |
---|---|
From | Boolean SCVLANInterfaceSetOptions ( SCVLANInterfaceRef vlan, CFDictionaryRef newOptions ); |
To | Boolean SCVLANInterfaceSetOptions ( SCVLANInterfaceRef _Nonnull vlan, CFDictionaryRef _Nonnull newOptions ); |
Declaration | |
---|---|
From | Boolean SCVLANInterfaceSetPhysicalInterfaceAndTag ( SCVLANInterfaceRef vlan, SCNetworkInterfaceRef physical, CFNumberRef tag ); |
To | Boolean SCVLANInterfaceSetPhysicalInterfaceAndTag ( SCVLANInterfaceRef _Nonnull vlan, SCNetworkInterfaceRef _Nonnull physical, CFNumberRef _Nonnull tag ); |
SCNetworkConnection.h
Declaration | |
---|---|
From | CFDictionaryRef SCNetworkConnectionCopyExtendedStatus ( SCNetworkConnectionRef connection ); |
To | CFDictionaryRef _Nullable SCNetworkConnectionCopyExtendedStatus ( SCNetworkConnectionRef _Nonnull connection ); |
Modified SCNetworkConnectionCopyServiceID()
Declaration | |
---|---|
From | CFStringRef SCNetworkConnectionCopyServiceID ( SCNetworkConnectionRef connection ); |
To | CFStringRef _Nullable SCNetworkConnectionCopyServiceID ( SCNetworkConnectionRef _Nonnull connection ); |
Modified SCNetworkConnectionCopyStatistics()
Declaration | |
---|---|
From | CFDictionaryRef SCNetworkConnectionCopyStatistics ( SCNetworkConnectionRef connection ); |
To | CFDictionaryRef _Nullable SCNetworkConnectionCopyStatistics ( SCNetworkConnectionRef _Nonnull connection ); |
Modified SCNetworkConnectionCopyUserOptions()
Declaration | |
---|---|
From | CFDictionaryRef SCNetworkConnectionCopyUserOptions ( SCNetworkConnectionRef connection ); |
To | CFDictionaryRef _Nullable SCNetworkConnectionCopyUserOptions ( SCNetworkConnectionRef _Nonnull connection ); |
Declaration | |
---|---|
From | Boolean SCNetworkConnectionCopyUserPreferences ( CFDictionaryRef selectionOptions, CFStringRef *serviceID, CFDictionaryRef *userOptions ); |
To | Boolean SCNetworkConnectionCopyUserPreferences ( CFDictionaryRef _Nullable selectionOptions, CFStringRef _Nonnull * _Nullable serviceID, CFDictionaryRef _Nonnull * _Nullable userOptions ); |
Declaration | |
---|---|
From | SCNetworkConnectionRef SCNetworkConnectionCreateWithServiceID ( CFAllocatorRef allocator, CFStringRef serviceID, SCNetworkConnectionCallBack callout, SCNetworkConnectionContext *context ); |
To | SCNetworkConnectionRef _Nullable SCNetworkConnectionCreateWithServiceID ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull serviceID, SCNetworkConnectionCallBack _Nullable callout, SCNetworkConnectionContext * _Nullable context ); |
Modified SCNetworkConnectionGetStatus()
Declaration | |
---|---|
From | SCNetworkConnectionStatus SCNetworkConnectionGetStatus ( SCNetworkConnectionRef connection ); |
To | SCNetworkConnectionStatus SCNetworkConnectionGetStatus ( SCNetworkConnectionRef _Nonnull connection ); |
Declaration | |
---|---|
From | Boolean SCNetworkConnectionScheduleWithRunLoop ( SCNetworkConnectionRef connection, CFRunLoopRef runLoop, CFStringRef runLoopMode ); |
To | Boolean SCNetworkConnectionScheduleWithRunLoop ( SCNetworkConnectionRef _Nonnull connection, CFRunLoopRef _Nonnull runLoop, CFStringRef _Nonnull runLoopMode ); |
Declaration | |
---|---|
From | Boolean SCNetworkConnectionSetDispatchQueue ( SCNetworkConnectionRef connection, dispatch_queue_t queue ); |
To | Boolean SCNetworkConnectionSetDispatchQueue ( SCNetworkConnectionRef _Nonnull connection, dispatch_queue_t _Nullable queue ); |
Modified SCNetworkConnectionStart()
Declaration | |
---|---|
From | Boolean SCNetworkConnectionStart ( SCNetworkConnectionRef connection, CFDictionaryRef userOptions, Boolean linger ); |
To | Boolean SCNetworkConnectionStart ( SCNetworkConnectionRef _Nonnull connection, CFDictionaryRef _Nullable userOptions, Boolean linger ); |
Modified SCNetworkConnectionStop()
Declaration | |
---|---|
From | Boolean SCNetworkConnectionStop ( SCNetworkConnectionRef connection, Boolean forceDisconnect ); |
To | Boolean SCNetworkConnectionStop ( SCNetworkConnectionRef _Nonnull connection, Boolean forceDisconnect ); |
Declaration | |
---|---|
From | Boolean SCNetworkConnectionUnscheduleFromRunLoop ( SCNetworkConnectionRef connection, CFRunLoopRef runLoop, CFStringRef runLoopMode ); |
To | Boolean SCNetworkConnectionUnscheduleFromRunLoop ( SCNetworkConnectionRef _Nonnull connection, CFRunLoopRef _Nonnull runLoop, CFStringRef _Nonnull runLoopMode ); |
SCNetworkReachability.h
Declaration | |
---|---|
From | SCNetworkReachabilityRef SCNetworkReachabilityCreateWithAddress ( CFAllocatorRef allocator, const struct sockaddr *address ); |
To | SCNetworkReachabilityRef _Nullable SCNetworkReachabilityCreateWithAddress ( CFAllocatorRef _Nullable allocator, const struct sockaddr * _Nonnull address ); |
Declaration | |
---|---|
From | SCNetworkReachabilityRef SCNetworkReachabilityCreateWithAddressPair ( CFAllocatorRef allocator, const struct sockaddr *localAddress, const struct sockaddr *remoteAddress ); |
To | SCNetworkReachabilityRef _Nullable SCNetworkReachabilityCreateWithAddressPair ( CFAllocatorRef _Nullable allocator, const struct sockaddr * _Nullable localAddress, const struct sockaddr * _Nullable remoteAddress ); |
Declaration | |
---|---|
From | SCNetworkReachabilityRef SCNetworkReachabilityCreateWithName ( CFAllocatorRef allocator, const char *nodename ); |
To | SCNetworkReachabilityRef _Nullable SCNetworkReachabilityCreateWithName ( CFAllocatorRef _Nullable allocator, const char * _Nonnull nodename ); |
Modified SCNetworkReachabilityGetFlags()
Declaration | |
---|---|
From | Boolean SCNetworkReachabilityGetFlags ( SCNetworkReachabilityRef target, SCNetworkReachabilityFlags *flags ); |
To | Boolean SCNetworkReachabilityGetFlags ( SCNetworkReachabilityRef _Nonnull target, SCNetworkReachabilityFlags * _Nonnull flags ); |
Declaration | |
---|---|
From | Boolean SCNetworkReachabilityScheduleWithRunLoop ( SCNetworkReachabilityRef target, CFRunLoopRef runLoop, CFStringRef runLoopMode ); |
To | Boolean SCNetworkReachabilityScheduleWithRunLoop ( SCNetworkReachabilityRef _Nonnull target, CFRunLoopRef _Nonnull runLoop, CFStringRef _Nonnull runLoopMode ); |
Modified SCNetworkReachabilitySetCallback()
Declaration | |
---|---|
From | Boolean SCNetworkReachabilitySetCallback ( SCNetworkReachabilityRef target, SCNetworkReachabilityCallBack callout, SCNetworkReachabilityContext *context ); |
To | Boolean SCNetworkReachabilitySetCallback ( SCNetworkReachabilityRef _Nonnull target, SCNetworkReachabilityCallBack _Nullable callout, SCNetworkReachabilityContext * _Nullable context ); |
Declaration | |
---|---|
From | Boolean SCNetworkReachabilitySetDispatchQueue ( SCNetworkReachabilityRef target, dispatch_queue_t queue ); |
To | Boolean SCNetworkReachabilitySetDispatchQueue ( SCNetworkReachabilityRef _Nonnull target, dispatch_queue_t _Nullable queue ); |
Declaration | |
---|---|
From | Boolean SCNetworkReachabilityUnscheduleFromRunLoop ( SCNetworkReachabilityRef target, CFRunLoopRef runLoop, CFStringRef runLoopMode ); |
To | Boolean SCNetworkReachabilityUnscheduleFromRunLoop ( SCNetworkReachabilityRef _Nonnull target, CFRunLoopRef _Nonnull runLoop, CFStringRef _Nonnull runLoopMode ); |
SCPreferences.h
Modified SCPreferencesAddValue()
Declaration | |
---|---|
From | Boolean SCPreferencesAddValue ( SCPreferencesRef prefs, CFStringRef key, CFPropertyListRef value ); |
To | Boolean SCPreferencesAddValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull key, CFPropertyListRef _Nonnull value ); |
Modified SCPreferencesApplyChanges()
Declaration | |
---|---|
From | Boolean SCPreferencesApplyChanges ( SCPreferencesRef prefs ); |
To | Boolean SCPreferencesApplyChanges ( SCPreferencesRef _Nonnull prefs ); |
Modified SCPreferencesCommitChanges()
Declaration | |
---|---|
From | Boolean SCPreferencesCommitChanges ( SCPreferencesRef prefs ); |
To | Boolean SCPreferencesCommitChanges ( SCPreferencesRef _Nonnull prefs ); |
Modified SCPreferencesCopyKeyList()
Declaration | |
---|---|
From | CFArrayRef SCPreferencesCopyKeyList ( SCPreferencesRef prefs ); |
To | CFArrayRef _Nullable SCPreferencesCopyKeyList ( SCPreferencesRef _Nonnull prefs ); |
Modified SCPreferencesCreate()
Declaration | |
---|---|
From | SCPreferencesRef SCPreferencesCreate ( CFAllocatorRef allocator, CFStringRef name, CFStringRef prefsID ); |
To | SCPreferencesRef _Nullable SCPreferencesCreate ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull name, CFStringRef _Nullable prefsID ); |
Declaration | |
---|---|
From | SCPreferencesRef SCPreferencesCreateWithAuthorization ( CFAllocatorRef allocator, CFStringRef name, CFStringRef prefsID, AuthorizationRef authorization ); |
To | SCPreferencesRef _Nullable SCPreferencesCreateWithAuthorization ( CFAllocatorRef _Nullable allocator, CFStringRef _Nonnull name, CFStringRef _Nullable prefsID, AuthorizationRef _Nullable authorization ); |
Modified SCPreferencesGetSignature()
Declaration | |
---|---|
From | CFDataRef SCPreferencesGetSignature ( SCPreferencesRef prefs ); |
To | CFDataRef _Nullable SCPreferencesGetSignature ( SCPreferencesRef _Nonnull prefs ); |
Modified SCPreferencesGetValue()
Declaration | |
---|---|
From | CFPropertyListRef SCPreferencesGetValue ( SCPreferencesRef prefs, CFStringRef key ); |
To | CFPropertyListRef _Nullable SCPreferencesGetValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull key ); |
Modified SCPreferencesLock()
Declaration | |
---|---|
From | Boolean SCPreferencesLock ( SCPreferencesRef prefs, Boolean wait ); |
To | Boolean SCPreferencesLock ( SCPreferencesRef _Nonnull prefs, Boolean wait ); |
Modified SCPreferencesRemoveValue()
Declaration | |
---|---|
From | Boolean SCPreferencesRemoveValue ( SCPreferencesRef prefs, CFStringRef key ); |
To | Boolean SCPreferencesRemoveValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull key ); |
Modified SCPreferencesScheduleWithRunLoop()
Declaration | |
---|---|
From | Boolean SCPreferencesScheduleWithRunLoop ( SCPreferencesRef prefs, CFRunLoopRef runLoop, CFStringRef runLoopMode ); |
To | Boolean SCPreferencesScheduleWithRunLoop ( SCPreferencesRef _Nonnull prefs, CFRunLoopRef _Nonnull runLoop, CFStringRef _Nonnull runLoopMode ); |
Modified SCPreferencesSetCallback()
Declaration | |
---|---|
From | Boolean SCPreferencesSetCallback ( SCPreferencesRef prefs, SCPreferencesCallBack callout, SCPreferencesContext *context ); |
To | Boolean SCPreferencesSetCallback ( SCPreferencesRef _Nonnull prefs, SCPreferencesCallBack _Nullable callout, SCPreferencesContext * _Nullable context ); |
Modified SCPreferencesSetDispatchQueue()
Declaration | |
---|---|
From | Boolean SCPreferencesSetDispatchQueue ( SCPreferencesRef prefs, dispatch_queue_t queue ); |
To | Boolean SCPreferencesSetDispatchQueue ( SCPreferencesRef _Nonnull prefs, dispatch_queue_t _Nullable queue ); |
Modified SCPreferencesSetValue()
Declaration | |
---|---|
From | Boolean SCPreferencesSetValue ( SCPreferencesRef prefs, CFStringRef key, CFPropertyListRef value ); |
To | Boolean SCPreferencesSetValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull key, CFPropertyListRef _Nonnull value ); |
Modified SCPreferencesSynchronize()
Declaration | |
---|---|
From | void SCPreferencesSynchronize ( SCPreferencesRef prefs ); |
To | void SCPreferencesSynchronize ( SCPreferencesRef _Nonnull prefs ); |
Modified SCPreferencesUnlock()
Declaration | |
---|---|
From | Boolean SCPreferencesUnlock ( SCPreferencesRef prefs ); |
To | Boolean SCPreferencesUnlock ( SCPreferencesRef _Nonnull prefs ); |
Modified SCPreferencesUnscheduleFromRunLoop()
Declaration | |
---|---|
From | Boolean SCPreferencesUnscheduleFromRunLoop ( SCPreferencesRef prefs, CFRunLoopRef runLoop, CFStringRef runLoopMode ); |
To | Boolean SCPreferencesUnscheduleFromRunLoop ( SCPreferencesRef _Nonnull prefs, CFRunLoopRef _Nonnull runLoop, CFStringRef _Nonnull runLoopMode ); |
SCPreferencesPath.h
Modified SCPreferencesPathCreateUniqueChild()
Declaration | |
---|---|
From | CFStringRef SCPreferencesPathCreateUniqueChild ( SCPreferencesRef prefs, CFStringRef prefix ); |
To | CFStringRef _Nullable SCPreferencesPathCreateUniqueChild ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull prefix ); |
Modified SCPreferencesPathGetLink()
Declaration | |
---|---|
From | CFStringRef SCPreferencesPathGetLink ( SCPreferencesRef prefs, CFStringRef path ); |
To | CFStringRef _Nullable SCPreferencesPathGetLink ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull path ); |
Modified SCPreferencesPathGetValue()
Declaration | |
---|---|
From | CFDictionaryRef SCPreferencesPathGetValue ( SCPreferencesRef prefs, CFStringRef path ); |
To | CFDictionaryRef _Nullable SCPreferencesPathGetValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull path ); |
Modified SCPreferencesPathRemoveValue()
Declaration | |
---|---|
From | Boolean SCPreferencesPathRemoveValue ( SCPreferencesRef prefs, CFStringRef path ); |
To | Boolean SCPreferencesPathRemoveValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull path ); |
Modified SCPreferencesPathSetLink()
Declaration | |
---|---|
From | Boolean SCPreferencesPathSetLink ( SCPreferencesRef prefs, CFStringRef path, CFStringRef link ); |
To | Boolean SCPreferencesPathSetLink ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull path, CFStringRef _Nonnull link ); |
Modified SCPreferencesPathSetValue()
Declaration | |
---|---|
From | Boolean SCPreferencesPathSetValue ( SCPreferencesRef prefs, CFStringRef path, CFDictionaryRef value ); |
To | Boolean SCPreferencesPathSetValue ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull path, CFDictionaryRef _Nonnull value ); |
SCPreferencesSetSpecific.h
Modified SCPreferencesSetComputerName()
Declaration | |
---|---|
From | Boolean SCPreferencesSetComputerName ( SCPreferencesRef prefs, CFStringRef name, CFStringEncoding nameEncoding ); |
To | Boolean SCPreferencesSetComputerName ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull name, CFStringEncoding nameEncoding ); |
Modified SCPreferencesSetLocalHostName()
Declaration | |
---|---|
From | Boolean SCPreferencesSetLocalHostName ( SCPreferencesRef prefs, CFStringRef name ); |
To | Boolean SCPreferencesSetLocalHostName ( SCPreferencesRef _Nonnull prefs, CFStringRef _Nonnull name ); |
SystemConfiguration.h
Modified SCCopyLastError()
Declaration | |
---|---|
From | CFErrorRef SCCopyLastError ( void ); |
To | CFErrorRef _Nonnull SCCopyLastError ( void ); |
Modified SCErrorString()
Declaration | |
---|---|
From | const char * SCErrorString ( int status ); |
To | const char * _Nonnull SCErrorString ( int status ); |