I want to connect my server. My server is listening on port 50000.
NetworkStream socketStream = null;
Socket AcceptedClient;// stream for receiving data
byte[] bCode;
TcpListener listener = null;
IPAddress local = IPAddress.Any;
listener = new TcpListener(local, 50000);
In client computer:
I don't know IP and host name of it.
Our IP is in 192.168.1.x
I must have IP or host name of it.
Is it possible that I create socket connection on this scenario?
My question is: Is it possible to connect other computer without IP address?(TCP or UDP) Thank you.