Changes to Trunk (
http://source.squeak.org/trunk.html) in the last 24 hours:
http://lists.squeakfoundation.org/pipermail/packages/2016-March/009512.htmlName: NetworkTests-eem.41
Ancestors: NetworkTests-ul.40
Improve testSocketReuse. It seems correct that the SocketPlugin answers whatever bit things like SO_REUSEADDR set in underlying socket fields, not the 1 that the test expects. e.g. on Mac OS X
Socket newUDP
setOption: 'SO_REUSEADDR' value: 1;
getOption: 'SO_REUSEADDR'
answers #(0 4), not #(0 1)
=============================================