How do you detect if Socket#close() has been called on a socket on the remote side?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
The
Start the server, start the client. You'll see that it prints "connected: true" twice, even though the socket is closed the second time. The only way to really find out is by reading (you'll get -1 as return value) or writing (an |
|||||||||||
|
|
Since the answers deviate I decided to test this and post the result - including the test example. The server here just writes data to a client and does not expect any input. The server:
|
||||
|
|
You can also check for socket output stream error while writing to client socket.
|
||||
|
|