ftp data connection does not use connectTimeout
-----------------------------------------------

                 Key: NET-399
                 URL: https://issues.apache.org/jira/browse/NET-399
             Project: Commons Net
          Issue Type: Bug
          Components: FTP
    Affects Versions: 2.2, 2.0
            Reporter: Noah Levitt


Deep inside the lengthy method 
org.apache.commons.net.ftp.FTPClient._openDataConnection_(int, String) we find 
this line

            socket = _socketFactory_.createSocket(__passiveHost, __passivePort);

Which I believe does not set the connect timeout when opening the connection. 
If the line were changed to the following, it would use the connectTimeout 
property. 

            socket = connect(__passiveHost, __passivePort)

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to