this repo has no description
1#include <SystemConfiguration/SCNetworkConnection.h>
2
3CFTypeID SCNetworkConnectionGetTypeID(void)
4{
5 return 0;
6}
7
8Boolean SCNetworkConnectionScheduleWithRunLoop(SCNetworkConnectionRef ref, CFRunLoopRef rl, CFStringRef rlMode)
9{
10 return 0;
11}
12
13Boolean SCNetworkConnectionUnscheduleFromRunLoop(SCNetworkConnectionRef ref, CFRunLoopRef rl, CFStringRef rlMode)
14{
15 return 0;
16}
17
18Boolean SCNetworkConnectionStop(SCNetworkConnectionRef ref, Boolean force)
19{
20 return 0;
21}
22
23Boolean SCNetworkConnectionStart(SCNetworkConnectionRef ref, CFDictionaryRef userOptions, Boolean linger)
24{
25 return 0;
26}
27
28Boolean
29SCNetworkConnectionCopyUserPreferences (
30 CFDictionaryRef __nullable selectionOptions,
31 CFStringRef __nonnull * __nullable serviceID,
32 CFDictionaryRef __nonnull * __nullable userOptions
33 ) __OSX_AVAILABLE_STARTING(__MAC_10_3,__IPHONE_NA) {
34 return 0;
35}
36
37SCNetworkConnectionRef SCNetworkConnectionCreateWithServiceID(CFAllocatorRef allocator, CFStringRef serviceID, SCNetworkConnectionCallBack cb, SCNetworkConnectionContext* ctxt)
38{
39 return NULL;
40}
41
42