Lines Matching refs:port

885      * Constructs a TCP connection to a named host at a specified port.
889 * method is called with the host address and <code>port</code>
894 * @param port number of the server's port
899 * @throws IllegalArgumentException if the port parameter is outside the
900 * specified range of valid port values, which is between 0 and
904 protected SSLSocket(String host, int port)
906 { super(host, port); }
912 * and port. This acts as the SSL client.
915 * method is called with the host address and <code>port</code>
919 * @param port its port
923 * @throws IllegalArgumentException if the port parameter is outside the
924 * specified range of valid port values, which is between 0 and
929 protected SSLSocket(InetAddress address, int port)
931 { super(address, port); }
936 * Constructs an SSL connection to a named host at a specified port,
937 * binding the client side of the connection a given address and port.
941 * method is called with the host address and <code>port</code>
946 * @param port number of the server's port
949 * @param clientPort the client's port the socket is bound to, or
950 * <code>zero</code> for a system selected free port.
955 * @throws IllegalArgumentException if the port parameter or clientPort
956 * parameter is outside the specified range of valid port values,
960 protected SSLSocket(String host, int port,
963 { super(host, port, clientAddress, clientPort); }
969 * and TCP port, binding the client side of the connection a given
970 * address and port. This acts as the SSL client.
973 * method is called with the host address and <code>port</code>
977 * @param port its port
980 * @param clientPort the client's port the socket is bound to, or
981 * <code>zero</code> for a system selected free port.
985 * @throws IllegalArgumentException if the port parameter or clientPort
986 * parameter is outside the specified range of valid port values,
991 protected SSLSocket(InetAddress address, int port,
994 { super(address, port, clientAddress, clientPort); }