Lines Matching defs:backlog
129 * specified connection backlog. The socket is configured with
132 * The <code>backlog</code> argument must be a positive
142 * @param backlog how many connections are queued
154 createServerSocket(int port, int backlog)
160 * with a specified listen backlog and local IP.
169 * The <code>backlog</code> argument must be a positive
179 * @param backlog how many connections are queued
192 createServerSocket(int port, int backlog, InetAddress ifAddress)
221 public ServerSocket createServerSocket(int port, int backlog)
224 return new ServerSocket(port, backlog);
228 createServerSocket(int port, int backlog, InetAddress ifAddress)
231 return new ServerSocket(port, backlog, ifAddress);