I want to do something like that :
public void myFun (String tIps [])
{
Socket s = new Socket ();
s.connect (new InetSocketAddress (serverIp, 80), 1000);
for (int i = 0 ; i < tIps.length ; ++i)
{
// Rebind the socket with another Ip
s.bind (new InetSocketAddress (tIps [i], 0));
/*
* use the socket
*/
}
s.close ()
}
But I get this error : "java.net.SocketException: Already bound". I tried to use s.setReuseAddress (true), but it did'nt change anything. Is there any solution to avoid opening a new socket for each request, which is very long ?
Thanks !