diff options
author | David Daney <ddaney@avtrex.com> | 2006-12-08 20:45:43 +0000 |
---|---|---|
committer | David Daney <ddaney@avtrex.com> | 2006-12-08 20:45:43 +0000 |
commit | 8ac4d056ac03bee426cfe4ae705ef7a440716458 (patch) | |
tree | f923a21c412eb04e63506b9fcebb8a0d5faeb431 /ChangeLog | |
parent | 6959321995f4485ec98cb99635eb94394641a4b4 (diff) | |
download | classpath-8ac4d056ac03bee426cfe4ae705ef7a440716458.tar.gz |
* gnu/java/net/protocol/http/HTTPConnection.java (imports): Add
SocketException.
(HTTPConnection): Handle NumberFormatException in properties parsing.
(Pool.get): Set timeout on reused sockets.
* gnu/java/net/protocol/http/HTTPURLConnection.java (proxyPort):
Initialize.
(HTTPURLConnection): Cleanup properties handling.
(getConnection): Use both connection and read timeouts.
(setConnectTimeout): Removed.
(setReadTimeout): New method.
* java/net/URLConnection.java (timeout): Renamed to...
(connectTimeout): ... connectTimeout throughout.
(readTimeout): New field.
(getReadTimeout): New method.
(setReadTimeout): New method.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,21 @@ +2006-12-08 David Daney <ddaney@avtrex.com> + + * gnu/java/net/protocol/http/HTTPConnection.java (imports): Add + SocketException. + (HTTPConnection): Handle NumberFormatException in properties parsing. + (Pool.get): Set timeout on reused sockets. + * gnu/java/net/protocol/http/HTTPURLConnection.java (proxyPort): + Initialize. + (HTTPURLConnection): Cleanup properties handling. + (getConnection): Use both connection and read timeouts. + (setConnectTimeout): Removed. + (setReadTimeout): New method. + * java/net/URLConnection.java (timeout): Renamed to... + (connectTimeout): ... connectTimeout throughout. + (readTimeout): New field. + (getReadTimeout): New method. + (setReadTimeout): New method. + 2006-12-08 Tania Bento <tbento@redhat.com> * java/awt/ScrollPane.java |