I can connect an endpoint by writing:
socket.Connect(endPoint);
But some of the devices I connect accept only the connections from a specific IP address.
So to use in a server, I'd like to give the user the ability to choose the local end point:
I give the user a combobox filled like this:
var source = Dns.GetHostAddresses(Dns.GetHostName())
.Where(ip => ip.AddressFamily == (rbIPv4.Checked
? AddressFamily.InterNetwork
: AddressFamily.InterNetworkV6)).ToArray();
cbLocalIP.DataSource = source;
rbIPv4 and rbIPv6 are radio controls. Using those two, I only show the addresses with the specified address family.
- User selects the local IP address and enters a local port number.
- Then he enters the remote IP address and the remote port number.
I get the end points:
var localEP = new IPEndPoint((IPAddress)cbLocalIP.SelectedItem, localPort);
var remoteEP = new IPEndPoint(remoteIP, remotePort);
I create a socket:
var socket = new Socket(remoteEP.AddressFamily,
SocketType.Stream,
ProtocolType.Tcp);
I bind it to the local end point:
socket.Bind(localEP);
I try to connect to the remote end point:
socket.Connect(remoteEP);
It throws a SocketException with the code: 10049 (AddressNotAvailable).
- If I don't bind the socket,
Connectworks ok. - If I specify
IPAddress.Anyfor the local end point and bind,Connectworks ok. - If I specify a local IP for the local end point and bind,
Connectdoesn't work.
What am I doing wrong?
Edit: Solved. I'm flagging this because I was trying to connect a listener that's in the same machine and (turns out) is bound to the same IP address.
