I am trying to use multicastsockets in a program of mine. Today, I'm not sure what changed, but my program (which hasn't changed and was working fine before) started freezing on random occasion when the setSoTimeout(int)
method was called. It's not consistently, the method may be called a few times before this happens. Any clues as to what this is?
Code:
private String[] getPlayerInfo() {
sendMessageToPlayers("count", 500);
String[] temp = new String[4];
while (true) {
try {
byte[] buffer = new byte[1000];
DatagramPacket datagram = new DatagramPacket(buffer, buffer.length);
cSocket.receive(datagram);
String message = new String(datagram.getData());
if (message.contains("received")) {
message.substring(message.indexOf("received") - 1, 1);
int playerNum = Integer.parseInt(message.substring(message.indexOf("received") - 1, 1));
temp[playerNum] = message.substring(message.indexOf("received") + "received ".length());
}
} catch (IOException e) {
try {
cSocket.setSoTimeout(100000);
} catch (SocketException e1) {
break;
}
break;
}
}
return temp;
}
public void sendMessageToPlayers(String message, int timeout) {
byte[] buf = (message).getBytes();
DatagramPacket dg = new DatagramPacket(buf, buf.length, group, 6789);
try {
cSocket.send(dg);
cSocket.setSoTimeout(timeout);
} catch (IOException ex) {
System.out.println(ex);
}
}
The documentation of setSoTimeout is
And SO_TIMEOUT
I don't understand the usage you made of it.