Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know whether an IP address is in Local network or not using my objective-c(Xcode) program.But,problem is that for every IP address(even if it is not in network),the result is success.Here is the code and please help me how to find if an IP address is in local network correctly.

            bool success = false;
            const char *host_name = [@"192.168.0.115" cStringUsingEncoding:NSASCIIStringEncoding];

            SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithName(NULL,
                                                                                        host_name);
            SCNetworkReachabilityFlags flags;
            success = SCNetworkReachabilityGetFlags(reachability, &flags);
            bool isAvailable = success && (flags & kSCNetworkFlagsReachable) &&
            !(flags & kSCNetworkFlagsConnectionRequired);
            if (isAvailable)
            {
              //success
              //connect to IP address                      

            }
            else
            {
               //Not success
            }
share|improve this question
2  
this is not really a ping. A ping means sending a ICMP packet to target IP and get replies from it – Shivan Raptor Sep 24 '12 at 6:17
But,I have to write the code in Xcode only.Please any one reply if you know the answer – sushma Sep 24 '12 at 6:35

1 Answer

Use this code

Reachability* reachability = [[Reachability reachabilityWithHostName: @"192.168.0.115"] retain];
NetworkStatus netStatus = [reachability currentReachabilityStatus];

netStatus will give you the status.

share|improve this answer
For this code,I am getting not reachable for every IP address even if it is in the local Network. – sushma Sep 24 '12 at 6:55
So, is your device really accessible to the IP ? – Shivan Raptor Sep 24 '12 at 8:19
Yes for sure but its showing wrong output – sushma Sep 24 '12 at 8:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.