diff options
author | Casey Marshall <csm@gnu.org> | 2007-03-28 01:02:10 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-03-28 01:02:10 +0000 |
commit | 82f1c4b5fa00d766dfbcc089b2d23663cc96cb96 (patch) | |
tree | f72f4295961798c4555c9a1fc23156c72bd0e80d /libjava/classpath/ChangeLog | |
parent | f70ddc12ecc259e863ca60ce364528fa387da531 (diff) | |
download | gcc-82f1c4b5fa00d766dfbcc089b2d23663cc96cb96.zip gcc-82f1c4b5fa00d766dfbcc089b2d23663cc96cb96.tar.gz gcc-82f1c4b5fa00d766dfbcc089b2d23663cc96cb96.tar.bz2 |
re PR classpath/31302 (Exception in SSLSocketImpl)
2007-03-27 Casey Marshall <csm@gnu.org>
PR classpath/31302:
* gnu/javax/net/ssl/provider/SSLSocketImpl.java (SSLSocketImpl):
Always make a new socket.
(bind, connect, getInetAddress, getLocalAddress, getPort,
getLocalPort, getRemoteSocketAddress, getLocalSocketAddress,
setTcpNoDelay, getTcpNoDelay, setSoLinger, getSoLinger,
setOOBInline, getOOBInline, setSoTimeout, getSoTimeout,
setSendBufferSize, getSendBufferSize, setReceiveBufferSize,
getReceiveBufferSize, setKeepAlive, getKeepAlive, setTrafficClass,
getTrafficClass, setReuseAddress, getReuseAddress, close,
shutdownInput, shutdownOutput, isConnected, isBound, isClosed,
isInputShutdown, isOutputShutdown): Always use
'underlyingSocket'.
From-SVN: r123285
Diffstat (limited to 'libjava/classpath/ChangeLog')
-rw-r--r-- | libjava/classpath/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libjava/classpath/ChangeLog b/libjava/classpath/ChangeLog index 7c1e391..376c072 100644 --- a/libjava/classpath/ChangeLog +++ b/libjava/classpath/ChangeLog @@ -1,3 +1,19 @@ +2007-03-27 Casey Marshall <csm@gnu.org> + + PR classpath/31302: + * gnu/javax/net/ssl/provider/SSLSocketImpl.java (SSLSocketImpl): + Always make a new socket. + (bind, connect, getInetAddress, getLocalAddress, getPort, + getLocalPort, getRemoteSocketAddress, getLocalSocketAddress, + setTcpNoDelay, getTcpNoDelay, setSoLinger, getSoLinger, + setOOBInline, getOOBInline, setSoTimeout, getSoTimeout, + setSendBufferSize, getSendBufferSize, setReceiveBufferSize, + getReceiveBufferSize, setKeepAlive, getKeepAlive, setTrafficClass, + getTrafficClass, setReuseAddress, getReuseAddress, close, + shutdownInput, shutdownOutput, isConnected, isBound, isClosed, + isInputShutdown, isOutputShutdown): Always use + 'underlyingSocket'. + 2007-03-27 Tom Tromey <tromey@redhat.com> PR classpath/31303: |