How can I find that an IP address is a LAN IP address or WAN IP address? I am writing a C API in Windows.Thanks
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.
|
Private IP addresses are usually set from the private IP address spaces:
If the interface's IP addresses falls into one of these spaces, you can assume it is a private IP. Otherwise, it is a public (WAN) IP. |
|||||||
|
|
Most likely, what you want to determine is whether the address is a global address, or a private address. The wikipedia article lists the address blocks that are reserved for private use. |
|||||||||||
|
|
LAN vs WAN is meaningless in TCP/IP. There are only netmasks. If you can define what you mean by a LAN in terms of an IP netmask, the problem is trivial: does the IP address |
|||
|
Cprogram? – Sangeeth Saravanaraj Apr 25 '12 at 7:49