* @throws IOException Thrown if no TCP/IP connection could be made.
*/
protected FTPDataSocket newPassiveDataSocket(String remoteHost, int port)
throws IOException {
StreamSocket sock = PlainSocket.createPlainSocket(remoteHost, port, controlSock.getSoTimeout());
return new FTPPassiveDataSocket(sock);
}