How to write a simple Ping method in Cocoa/Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:50:04Z http://stackoverflow.com/feeds/question/798454 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c 4 How to write a simple Ping method in Cocoa/Objective-C rjstelling 2009-04-28T15:07:32Z 2009-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#799575 2 Answer by Alex Reynolds for How to write a simple Ping method in Cocoa/Objective-C Alex Reynolds 2009-04-28T19:55:29Z 2009-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#1004363 5 Answer by Stream for How to write a simple Ping method in Cocoa/Objective-C Stream 2009-06-16T23:07:56Z 2009-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, &amp;flags) &amp;&amp; flags &gt; 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#1085082 1 Answer by Gene Myers for How to write a simple Ping method in Cocoa/Objective-C Gene Myers 2009-07-05T23:37:19Z 2009-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, &amp;flags); bool isAvailable = success &amp;&amp; (flags &amp; kSCNetworkFlagsReachable) &amp;&amp; !(flags &amp; 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#1271756 0 Answer by Chris Bennet for How to write a simple Ping method in Cocoa/Objective-C Chris Bennet 2009-08-13T12:48:15Z 2009-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, &amp;flags); bool isAvailable = success &amp;&amp; (flags &amp; kSCNetworkFlagsReachable) &amp;&amp; !(flags &amp; 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#1336734 0 Answer by nebula_1979 for How to write a simple Ping method in Cocoa/Objective-C nebula_1979 2009-08-26T18:47:11Z 2009-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#1588980 0 Answer by Jark for How to write a simple Ping method in Cocoa/Objective-C Jark 2009-10-19T14:25:48Z 2009-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#1698105 1 Answer by Zhami for How to write a simple Ping method in Cocoa/Objective-C Zhami 2009-11-08T22:16:09Z 2009-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>