Closed GoogleCodeExporter closed 9 years ago
This is related to the serverSocket.setReuseAddress(true) call. Unfortunately
the result seems to be platform dependent. I tested the different combinations
on a recent Windows and Ubuntu.
Windows (Windows 7, OracleJDK 1.7.0_01):
-a second socket is opened on the same port (expect exception in modified
StartStopTest):
-setReuseAddress(true): all test passes (bad, likely a bug in the platform)
-setReuseAddress(false): exception (modified StartStopTest) (good)
-setReuseAddress not called: exception (modified StartStopTest) (good)
-a second socket is not opened on the same port (no exception is expected):
-setReuseAddress(true): all test passes (good)
-setReuseAddress(false): all test passes (good)
-setReuseAddress not called: all test passes (good)
Linux (Ubuntu 11.10, OpenJDK 1.7.0_147-icedtea):
-a second socket is opened on the same port (expect exception in modified
StartStopTest):
-setReuseAddress(true): exception (modified StartStopTest) (good)
-setReuseAddress(false): exception (MessageContentTest) (bad from our viewpoint but correct)
-setReuseAddress not called: exception (modified StartStopTest) (good)
-a second socket is not opened on the same port (no exception is expected):
-setReuseAddress(true): all test passes (good)
-setReuseAddress(false): exception (MessageContentTest) (bad from our viewpoint but correct)
-setReuseAddress not called: all test passes (good)
The "modified StartStopTest" is a test where two Wiser instances are started on
the same port. There is only one variant which works on both Windows and
Ubuntu: if we do not call setReuseAddress at all. It seems that either Windows
or the Windows version of the JDK does something wrong. I checked Subversion
log, and it does not seem that the call to setReuseAddress(true) was inserted
because of a specific issue. This, and that omitting this call does not cause
problems on two recent operating systems hopefully means that the removal of
the call will not cause any new problem on other modern platforms.
Original comment by hontvari@flyordie.com
on 6 Dec 2011 at 3:51
Original issue reported on code.google.com by
Virux1...@gmail.com
on 30 Nov 2011 at 11:23