FreeRDP
Reachability.h
1 /*
2 
3  File: Reachability.h
4  Abstract: Basic demonstration of how to use the SystemConfiguration Reachablity APIs.
5 
6  Version: 2.2
7 
8  Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.
9  ("Apple") in consideration of your agreement to the following terms, and your
10  use, installation, modification or redistribution of this Apple software
11  constitutes acceptance of these terms. If you do not agree with these terms,
12  please do not use, install, modify or redistribute this Apple software.
13 
14  In consideration of your agreement to abide by the following terms, and subject
15  to these terms, Apple grants you a personal, non-exclusive license, under
16  Apple's copyrights in this original Apple software (the "Apple Software"), to
17  use, reproduce, modify and redistribute the Apple Software, with or without
18  modifications, in source and/or binary forms; provided that if you redistribute
19  the Apple Software in its entirety and without modifications, you must retain
20  this notice and the following text and disclaimers in all such redistributions
21  of the Apple Software.
22  Neither the name, trademarks, service marks or logos of Apple Inc. may be used
23  to endorse or promote products derived from the Apple Software without specific
24  prior written permission from Apple. Except as expressly stated in this notice,
25  no other rights or licenses, express or implied, are granted by Apple herein,
26  including but not limited to any patent rights that may be infringed by your
27  derivative works or by other works in which the Apple Software may be
28  incorporated.
29 
30  The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO
31  WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
32  WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
33  PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
34  COMBINATION WITH YOUR PRODUCTS.
35 
36  IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
37  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
38  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39  ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR
40  DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF
41  CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
42  APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 
44  Copyright (C) 2010 Apple Inc. All Rights Reserved.
45 
46 */
47 
48 #import <Foundation/Foundation.h>
49 #import <SystemConfiguration/SystemConfiguration.h>
50 #import <netinet/in.h>
51 
52 typedef enum
53 {
54  NotReachable = 0,
55  ReachableViaWiFi = 1,
56  ReachableViaWWAN = 2
57 } NetworkStatus;
58 #define kReachabilityChangedNotification @"kNetworkReachabilityChangedNotification"
59 
60 @interface Reachability : NSObject
61 {
62  BOOL localWiFiRef;
63  SCNetworkReachabilityRef reachabilityRef;
64 }
65 
66 // reachabilityWithHostName- Use to check the reachability of a particular host name.
67 + (Reachability *)reachabilityWithHostName:(NSString *)hostName;
68 
69 // reachabilityWithAddress- Use to check the reachability of a particular IP address.
70 + (Reachability *)reachabilityWithAddress:(const struct sockaddr_in *)hostAddress;
71 
72 // reachabilityForInternetConnection- checks whether the default route is available.
73 // Should be used by applications that do not connect to a particular host
74 + (Reachability *)reachabilityForInternetConnection;
75 
76 // reachabilityForLocalWiFi- checks whether a local wifi connection is available.
77 + (Reachability *)reachabilityForLocalWiFi;
78 
79 // Start listening for reachability notifications on the current run loop
80 - (BOOL)startNotifier;
81 - (void)stopNotifier;
82 
83 - (NetworkStatus)currentReachabilityStatus;
84 // WWAN may be available, but not active until a connection has been established.
85 // WiFi may require a connection for VPN on Demand.
86 - (BOOL)connectionRequired;
87 @end