Home Forums Support Unable to create a TCP connection Reply To: Unable to create a TCP connection

#1397
Anonymous
Inactive

ServerCode

IPEndPoint thePoint = new IPEndPoint(IPAddress.Parse(“192.168.1.147”), 10000);

TCPConnection.StartListening(thePoint, false);

Client Code

ConnectionInfo connInfo = new ConnectionInfo(“192.168.1.147”, 10000);

Connection newTcpConnection = TCPConnection.GetConnection(connInfo);