I am trying to use the Socket.bind() function this way:
Bind(new IPEndPoint(myInternalAddress, myPort));
The error I am getting is \"The re
bind()
... binds a socket to local IP address and port. That's what IPEndPoint
takes in its constructor (see IPEndPoint(address, port)). Looks like you are passing local and remote addresses there instead.
If none of the ports work then it's probably the IP address that is wrong. Since you mention an "upgrade" - see what changed - is the address still the same? ipconfig - hint, hint.