Merge changes back from 3.2 branch which fixes a deadlock in the
SslHandler. See NETTY-443
This commit is contained in:
parent
2ae095f92c
commit
a67e550207
@ -871,14 +871,22 @@ public class SslHandler extends FrameDecoder
|
||||
loop:
|
||||
for (;;) {
|
||||
SSLEngineResult result;
|
||||
boolean needsHandshake = false;
|
||||
synchronized (handshakeLock) {
|
||||
if (!handshaken && !handshaking &&
|
||||
!engine.getUseClientMode() &&
|
||||
!engine.isInboundDone() && !engine.isOutboundDone()) {
|
||||
needsHandshake = true;
|
||||
|
||||
}
|
||||
}
|
||||
if (needsHandshake) {
|
||||
handshake();
|
||||
}
|
||||
|
||||
synchronized (handshakeLock) {
|
||||
result = engine.unwrap(inNetBuf, outAppBuf);
|
||||
}
|
||||
|
||||
final HandshakeStatus handshakeStatus = result.getHandshakeStatus();
|
||||
handleRenegotiation(handshakeStatus);
|
||||
@ -906,7 +914,7 @@ public class SslHandler extends FrameDecoder
|
||||
throw new IllegalStateException(
|
||||
"Unknown handshake status: " + handshakeStatus);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (needsWrap) {
|
||||
|
Loading…
Reference in New Issue
Block a user