You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2010/03/31 20:05:27 UTC

[jira] Updated: (NET-307) One of the "connect" method in class org.apache.commons.net.SocketClient doesn't handle connection timeout properly

     [ https://issues.apache.org/jira/browse/NET-307?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb updated NET-307:
---------------------

    Fix Version/s:     (was: 3.0)
                   2.0

> One of the "connect" method in class org.apache.commons.net.SocketClient doesn't handle connection timeout properly
> -------------------------------------------------------------------------------------------------------------------
>
>                 Key: NET-307
>                 URL: https://issues.apache.org/jira/browse/NET-307
>             Project: Commons Net
>          Issue Type: Improvement
>    Affects Versions: 2.0
>         Environment: Not applicable
>            Reporter: sg
>            Priority: Minor
>             Fix For: 2.0
>
>
> org.apache.commons.net.SocketClient method connect (line 225) doesn't use the configured timeout value.
> Original code:
> {code:title=SocketClient.java (line 225)|borderStyle=solid}
>     public void connect(String hostname, int port,
>                         InetAddress localAddr, int localPort)
>     throws SocketException, IOException
>     {
>         _socket_ = _socketFactory_.createSocket(hostname, port, localAddr, localPort);
>         _connectAction_();
>     }
> {code}
> Working alternative:
> {code:title=SocketClient.java (line 225)|borderStyle=solid}
>     public void connect(String hostname, int port,
>                         InetAddress localAddr, int localPort)
>     throws SocketException, IOException
>     {
>         _socket_ = _socketFactory_.createSocket();
>         _socket_.bind(new InetSocketAddress(localAddr, localPort));
>         _socket_.connect(new InetSocketAddress(hostname, port), connectTimeout);
>         _connectAction_();
>     }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.