-
Bug
-
Resolution: Fixed
-
P4
-
8
-
b15
-
generic
-
generic
-
Verified
JSSE debug log:
..., called closeSocket(selfInitiated)
It is expected to log:
..., called closeSocket(true)
Or
..., called closeSocket(false)
Need to update SSLSocketImpl.closeSocket(boolean selfInitiated):
if ((debug != null) && Debug.isOn("ssl")) {
System.out.println(threadName() + ", called closeSocket(selfInitiated)");
}
To
if ((debug != null) && Debug.isOn("ssl")) {
System.out.println(threadName() + ", called closeSocket(" + selfInitiated + ")");
}
..., called closeSocket(selfInitiated)
It is expected to log:
..., called closeSocket(true)
Or
..., called closeSocket(false)
Need to update SSLSocketImpl.closeSocket(boolean selfInitiated):
if ((debug != null) && Debug.isOn("ssl")) {
System.out.println(threadName() + ", called closeSocket(selfInitiated)");
}
To
if ((debug != null) && Debug.isOn("ssl")) {
System.out.println(threadName() + ", called closeSocket(" + selfInitiated + ")");
}