特定の IP とポートでソケット接続が失敗する理由は何ですか? これを修正する方法はありますか?場合によっては、ソケット接続に失敗しました。しかし、数分待って初めてわかります。接続が短時間で失敗するかどうかを調べる方法はありますか?
try{
socketConn = new Socket(this.ip, this.port);
}catch (IOException e){
System.err.println("Failed creating a Socket Connection in Peer constructor for " +id +
" with IP: " +ip+" and on port: "+port);
}