I use Apple Reachability class from Apple Sample code Reachability http://developer.apple.com/library/ios/#samplecode/Reachability/Listings/ReadMe_txt.html

in Xcode 4.2 and new Apple 3.0 compiler I get warning in this class that

+ (Reachability*) reachabilityWithAddress: (const struct sockaddr_in*) hostAddress;

*declaration of 'struct sockaddr_in*' will not be visible outside of this function*

I am not good at classic C %) so I dont understand how I can fix this warning or may be I can ignore it at all.

Thx

link|improve this question

feedback

1 Answer

up vote 109 down vote accepted

Add #import <netinet/in.h> in Reachability.h to get away with this

link|improve this answer
??? #import what? ) – Sergnsk Oct 14 '11 at 9:34
4  
I forgot to format it as code and stackoverflow removed <netinet/in.h> for me :( – saury Oct 14 '11 at 9:57
thanks, this is work! – Matrosov Alexander Feb 3 at 12:45
2  
And take care: the import already exists in Reachability.m - but it's also needed in Reachability.h – brainray Feb 24 at 10:05
3  
#include, not #import. Due to subtle differences between C and Objective-C headers, you should only use #import for Objective-C. Pure C should continue to use #include. – Jonathan Grynspan Mar 10 at 20:47
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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