C
cod3nam3
Hi, i have a small prog. where i am listining on a port for
connections:
The prog works fine outside of a proxy, fails behind one. I need
somehow to tell the socket to use a proxy on port 80. Someone have an
idea?
connections:
Code:
ServerSocket serversocket = null;
listening = true;
try
{
serversocket = new ServerSocket(64111);
serversocket.setSoTimeout(1000);
}
catch(IOException ioexception)
{
}
Socket socket = serversocket.accept();
The prog works fine outside of a proxy, fails behind one. I need
somehow to tell the socket to use a proxy on port 80. Someone have an
idea?