The requested Address is not valid in its context"
the ipendpoint that i give new tcpclient(ipep)
is 192.168.1.4 : 8080 which is on my LAN.
I can ping this address.
I have a tcplistener running on this address.
IPHostEntry heserver = Dns.GetHostEntry(tb_destname.Text);
IPEndPoint ipep = new IPEndPoint(heserver.AddressList[0],
Convert.ToInt32(tb_destport.Text));
client = new TcpClient(ipep);
Anyone have a clue of what context it is not valid in?
the ipendpoint that i give new tcpclient(ipep)
is 192.168.1.4 : 8080 which is on my LAN.
I can ping this address.
I have a tcplistener running on this address.
IPHostEntry heserver = Dns.GetHostEntry(tb_destname.Text);
IPEndPoint ipep = new IPEndPoint(heserver.AddressList[0],
Convert.ToInt32(tb_destport.Text));
client = new TcpClient(ipep);
Anyone have a clue of what context it is not valid in?