Author: sebb
Date: Thu Jun 6 08:53:30 2013
New Revision: 1490203
URL: http://svn.apache.org/r1490203
Log:
NET-505 User specified bufferSize reset to default when FTPClient is
disconnected or reinitialized resulting in performance degradation.
Modified:
commons/proper/net/trunk/src/changes/changes.xml
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java
Modified: commons/proper/net/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/net/trunk/src/changes/changes.xml?rev=1490203&r1=1490202&r2=1490203&view=diff
==============================================================================
--- commons/proper/net/trunk/src/changes/changes.xml (original)
+++ commons/proper/net/trunk/src/changes/changes.xml Thu Jun 6 08:53:30 2013
@@ -65,34 +65,37 @@ The <action> type attribute can be add,u
<release version="3.3" date="2013-06-??" description="
This is a bug-fix release. See further details below.
">
- <action issue="NET-507" dev="sebb" type="update">
+ <action issue="NET-505" dev="sebb" due-to="Sean Kelley"
type="update">
+ User specified bufferSize reset to default when FTPClient is
disconnected or reinitialized resulting in performance degradation.
+ </action>
+ <action issue="NET-507" dev="sebb" due-to="Jiri Netolicky"
type="update">
Option to disable private IP replacement in FTP passive mode.
</action>
- <action issue="NET-503" dev="sebb" type="add">
+ <action issue="NET-503" dev="sebb" due-to="Ofer Regev" type="add">
AuthenticatingSMTPClient does not support non-default encoding
</action>
- <action issue="NET-500" dev="sebb" type="fix">
+ <action issue="NET-500" dev="sebb" due-to="Michael Frick"
type="fix">
Always call FTPClient#setFileType after connection.
Not all servers default to ASCII.
</action>
- <action issue="NET-465" dev="sebb" type="fix">
+ <action issue="NET-465" dev="sebb" due-to="Jim Kerwood" type="fix">
FTPClient setSendBufferSize and setReceiveBufferSize on data
socket.
The previous fix caused performance problems.
Added new getters and setters for the SO_SNDBUF and SO_RCVBUF
values to be used on the data socket.
</action>
- <action issue="NET-496" dev="sebb" type="add">
+ <action issue="NET-496" dev="sebb"type="add">
Util copyReader/copyStream classes should use default buffer size
for non-positive buffer size parameters.
</action>
<action issue="NET-310" dev="sebb" type="add">
FTPCommand conversion to use enum; added FTPCmd emum and
deprecated FTPCommand.
</action>
- <action issue="NET-480" dev="sebb" type="fix">
+ <action issue="NET-480" dev="sebb" due-to="Peter Naber" type="fix">
Wrong passivHost when using FTPHTTPClient with EPSV
</action>
- <action issue="NET-494" dev="sebb" type="fix">
+ <action issue="NET-494" dev="sebb"type="fix">
FTPClient.CSL.cleanUp() fails to restore timeout value on exception
</action>
- <action issue="NET-492" dev="sebb" type="fix">
+ <action issue="NET-492" dev="sebb" due-to="Tomasz Jedrzejewski"
type="fix">
FTPClient.printWorkingDirectory() incorrectly parses certain valid
PWD command results
</action>
</release>
Modified:
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java
URL:
http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java?rev=1490203&r1=1490202&r2=1490203&view=diff
==============================================================================
---
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java
(original)
+++
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java
Thu Jun 6 08:53:30 2013
@@ -485,7 +485,6 @@ implements Configurable
__systemName = null;
__entryParser = null;
__entryParserKey = "";
- __bufferSize = 0;
__featuresMap = null;
}