I can't get them to work on a windows local area network.
I cant ping each machine from the other machine but my listener never gets a message.
TcpListener listener = null;
try {
listener = new TcpListener(IPAddress.Any, port);
listener.Start();
}
catch (SocketException se) ....
client = listener.AcceptTcpClient();
Is there something about LANs I need to know?
I cant ping each machine from the other machine but my listener never gets a message.
TcpListener listener = null;
try {
listener = new TcpListener(IPAddress.Any, port);
listener.Start();
}
catch (SocketException se) ....
client = listener.AcceptTcpClient();
Is there something about LANs I need to know?