Trouble getting jigsaw to listen to one ip-adress

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