I'm looking at the code for a server that creates a thread to handle each incoming connection. The problem is that for some reason on a bunch of threads, the DataInputStream created from the socket is hanging on readByte and not throwing any exceptions. The timeout is set for 60 seconds, so I'm not sure what the next step is with this.
socket.setSoTimeout(timeout);
socketInputStream = socket.getInputStream();
byte connectionOptions = socketDataInputStream.readByte();
available()return greater than 0? – WhiteFang34 Mar 17 '11 at 9:48