TCPconnection is listening on port 49001, on both LAN ip (10.10.10.1) and loopback (127.0.0.1).
I’m trying to connect to this server from the same application, by doing
ConnectionInfo connInfo = new ConnectionInfo(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 49001));
Result is a
Connection was closed during establish handshake.
Same result when I try to connect with 10.10.10.1 instead of the loopback.
I need my application to be able to be a server AND connect to a server (including my own server).