Sometime ago it was pointed out that the following was a typo, in 2.0.3 source ../jigsaw/http/socket/SocketClientFactory.java: public ServerSocket createServerSocket() throws IOException { // using maxCLient in the backlog is safe, but an overkill :) if (bindAddr != null) { return new ServerSocket (server.getPort(), maxClients); } else { return new ServerSocket (server.getPort(),Math.max(128, maxClients), bindAddr); } } And it was then told the typo is corrected to: if (bindAddr == null) THE TYPO IS STILL THERE in 2.0.4 ! I downloaded it a few minutes ago. Regards. SanathReceived on Tuesday, 7 March 2000 21:02:32 UTC
This archive was generated by hypermail 2.4.0 : Friday, 17 January 2020 22:41:28 UTC