- From: Anders Meyer <Anders_Meyer@pol.dk>
- Date: Fri, 28 Jan 2000 14:19:40 +0100
- To: "'www-jigsaw@w3.org'" <www-jigsaw@w3.org>
Hi! I am having some trouble with jigsaw - in takes up all ip-addresses allthoug the socketbindaddress is specified - i looked at the implementation: 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); } } Hmmm... If bindaddr is defined it's not used! Is that a bug or did I miss something? Regards \Anders Meyer
Received on Friday, 28 January 2000 08:20:16 UTC