Home | History | Annotate | Download | only in ssl

Lines Matching refs:port

77      * Create a TCP server socket on a port, using the default
82 * A port number of <code>0</code> creates a socket on any free port.
85 * method is called with the <code>port</code> argument as its
89 * @param port the port on which to listen
93 * @throws IllegalArgumentException if the port parameter is outside the
94 * specified range of valid port values, which is between 0 and
98 protected SSLServerSocket(int port)
100 { super(port); }
106 * Create a TCP server socket on a port, using the default
109 * A port number of <code>0</code> creates a socket on any free port.
119 * method is called with the <code>port</code> argument as its
123 * @param port the port on which to listen
129 * @throws IllegalArgumentException if the port parameter is outside the
130 * specified range of valid port values, which is between 0 and
134 protected SSLServerSocket(int port, int backlog)
136 { super(port, backlog); }
142 * Create a TCP server socket on a port, using the default
150 * method is called with the <code>port</code> argument as its
154 * A port number of <code>0</code> creates a socket on any free port.
166 * @param port the port on which to listen
174 * @throws IllegalArgumentException if the port parameter is outside the
175 * specified range of valid port values, which is between 0 and
179 protected SSLServerSocket(int port, int backlog, InetAddress address)
181 { super(port, backlog, address); }