Lines Matching defs:backlog
78 * authentication context. The connection backlog defaults to
107 * authentication context and a specified backlog of connections.
111 * The <code>backlog</code> argument is the requested maximum number of
124 * @param backlog requested maximum length of the queue of incoming
134 protected SSLServerSocket(int port, int backlog)
136 { super(port, backlog); }
143 * authentication context and a specified backlog of connections
156 * The <code>backlog</code> argument is the requested maximum number of
167 * @param backlog requested maximum length of the queue of incoming
179 protected SSLServerSocket(int port, int backlog, InetAddress address)
181 { super(port, backlog, address); }