How to write a simple Ping method in Cocoa/Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:50:04Zhttp://stackoverflow.com/feeds/question/798454http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c4How to write a simple Ping method in Cocoa/Objective-Crjstelling2009-04-28T15:07:32Z2009-11-08T22:16:09Z
<p>I need to write a simple <code>ping</code> method in Cocoa/Objective-C. It also needs to work on the iPhone.</p>
<p>I found an example that uses <code>icmp</code>, will this work on the iPhone?</p>
<p>I'm leaning towards a solution using <code>NSNetServices</code>, is this a good idea?</p>
<p>The method only needs to <code>ping</code> a few times and return the average and -1 if the host is down or unreachable.</p>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/799575#7995752Answer by Alex Reynolds for How to write a simple Ping method in Cocoa/Objective-CAlex Reynolds2009-04-28T19:55:29Z2009-04-28T19:55:29Z<p>Look into <a href="http://developer.apple.com/documentation/CoreFoundation/Reference/CFHostRef/Reference/reference.html" rel="nofollow">CFHost</a> and in particular <a href="http://developer.apple.com/documentation/CoreFoundation/Reference/CFHostRef/Reference/reference.html#//apple%5Fref/c/func/CFHostGetReachability" rel="nofollow">CFHostGetReachability</a>. There is <a href="http://developer.apple.com/SampleCode/CFHostSample/listing1.html" rel="nofollow">sample CFHost code</a> available, as well, which includes a routine to check host availability.</p>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1004363#10043635Answer by Stream for How to write a simple Ping method in Cocoa/Objective-CStream2009-06-16T23:07:56Z2009-06-17T01:02:14Z<p>The code below seems to be working synchronously:</p>
<pre><code>const char *hostName = [@"stackoverflow.com"
cStringUsingEncoding:NSASCIIStringEncoding];
SCNetworkConnectionFlags flags = 0;
if (SCNetworkCheckReachabilityByName(hostName, &flags) && flags > 0) {
NSLog(@"Host is reachable: %d", flags);
}
else {
NSLog(@"Host is unreachable");
}
</code></pre>
<p><em>Note: <code>SystemConfiguration.framework</code> is required</em></p>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1085082#10850821Answer by Gene Myers for How to write a simple Ping method in Cocoa/Objective-CGene Myers2009-07-05T23:37:19Z2009-07-05T23:37:19Z<p>Let me try this again...this time logging in, and formatting better ;-)</p>
<p><b>StreamSCNetworkCheckReachabilityByName is deprecated and NOT available for the iPhone.</b></p>
<p><code></p>
<pre><code>bool success = false;
const char *host_name = [@"stackoverflow.com"
cStringUsingEncoding:NSASCIIStringEncoding];
SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithName(NULL,
host_name);
SCNetworkReachabilityFlags flags;
success = SCNetworkReachabilityGetFlags(reachability, &flags);
bool isAvailable = success && (flags & kSCNetworkFlagsReachable) &&
!(flags & kSCNetworkFlagsConnectionRequired);
if (isAvailable) {
NSLog(@"Host is reachable: %d", flags);
}else{
NSLog(@"Host is unreachable");
}
</code></pre>
<p></code></p>
<p><b><i>Note: SystemConfiguration.framework is required</i></b></p>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1271756#12717560Answer by Chris Bennet for How to write a simple Ping method in Cocoa/Objective-CChris Bennet2009-08-13T12:48:15Z2009-10-23T02:18:08Z<p>The answer Gene Myers posted works using "SCNetworkReachabilityCreateWithName" for me - but only in the simulator. On my device (iPod w/OS 2.2.1) it always returns "Host is reachable" even for nonsense addresses like "zzz".</p>
<p>Am I misunderstanding something? Thanks.</p>
<p>Here's my code just in case:</p>
<p>From <a href="http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c">http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c</a></p>
<pre><code> - (IBAction) TestReachability:(id)sender
{
bool success = false;
const char *host_name = [ipAddressText.textcStringUsingEncoding:NSASCIIStringEncoding];
NSString *imageConnectionSuccess = @"Connected.png";
NSString *imageConnectionFailed = @"NotConnected.png";
SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithName(NULL,
host_name);
SCNetworkReachabilityFlags flags;
success = SCNetworkReachabilityGetFlags(reachability, &flags);
bool isAvailable = success && (flags & kSCNetworkFlagsReachable) &&
!(flags & kSCNetworkFlagsConnectionRequired);
if (isAvailable)
{
NSLog([NSString stringWithFormat: @"'%s' is reachable, flags: %x", host_name, flags]);
[imageView setImage: [UIImage imageNamed:imageConnectionSuccess]];
}
else
{
NSLog([NSString stringWithFormat: @"'%s' is not reachable", host_name]);
[imageView setImage: [UIImage imageNamed:imageConnectionFailed]];
}
}
</code></pre>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1336734#13367340Answer by nebula_1979 for How to write a simple Ping method in Cocoa/Objective-Cnebula_19792009-08-26T18:47:11Z2009-08-26T18:47:11Z<p>i tested with IP address but it not works properly: result is always YES!
is it possibile that do not exist a simple echo with timeout class?</p>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1588980#15889800Answer by Jark for How to write a simple Ping method in Cocoa/Objective-CJark2009-10-19T14:25:48Z2009-10-19T14:25:48Z<p>Hi,</p>
<p>Please take note that there is an difference between the simulator and the actual iPhone. The simulator is not a true simulator like the one supplied by Android, it uses Mac OSX classes for most of the functions. </p>
<p>This is particularly hell if there is a difference between the Mac OSX and iPhonew(for example the keychain).</p>
http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1698105#16981051Answer by Zhami for How to write a simple Ping method in Cocoa/Objective-CZhami2009-11-08T22:16:09Z2009-11-08T22:16:09Z<p>You are not missing anything -- "Reachability" doesn't actually test that the target domain is in fact reachable, it only assesses if there is a pathway out of the machine by which the target domain is potentially reachable. So long as you have some outbound connection (e.g., an active wirless or wired connection), and a routing configuration that leads to the target, then the site is "reachable" as far as SCNetworkReachability is concerned. </p>