8

When using Reachability.h — Apple's code to deal with connections on iOS:

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

I am getting the following warning:

Declaration of 'struct sockaddr_in' will not be visible outside of this function
csl
  • 10,937
  • 5
  • 57
  • 89
TheLearner
  • 19,387
  • 35
  • 95
  • 163

1 Answers1

21

Add #import <netinet/in.h> in Reachability.h file and this warning will be gone.. :D

Ankit Srivastava
  • 12,347
  • 11
  • 63
  • 115