Mercurial Hosting > luan
diff src/org/eclipse/jetty/server/nio/SelectChannelConnector.java @ 888:1aa58272794f
remove _acceptQueueSize
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 06 Oct 2016 23:12:00 -0600 |
parents | df84a1741687 |
children | 821e4634b787 |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/nio/SelectChannelConnector.java Tue Oct 04 23:59:56 2016 -0600 +++ b/src/org/eclipse/jetty/server/nio/SelectChannelConnector.java Thu Oct 06 23:12:00 2016 -0600 @@ -176,7 +176,7 @@ // Bind the server socket to the local host and port _acceptChannel.socket().setReuseAddress(getReuseAddress()); InetSocketAddress addr = getHost()==null?new InetSocketAddress(port):new InetSocketAddress(getHost(),port); - _acceptChannel.socket().bind(addr,getAcceptQueueSize()); + _acceptChannel.socket().bind(addr,0); _localPort=_acceptChannel.socket().getLocalPort(); if (_localPort<=0)