I'm trying to create a socket to connect to my IP address. The problem is that I have an "outside" IP address and an "inside" IP address.
According to http://whatismyipaddress.com/, my IP address is 97.100.76.196. But aside from that, my wireless internet router assigns different devices in my home different IP addresses. For example, on my computer, it is 10.0.0.9. So when I create a Socket, what would my parameters be since I essentially have 2 different IP addresses?
new Socket("which IP address???", int port);
Thanks so much!