Issue #1790 - SSL 100% CPU for HTTP/2.

DecryptedEndPoint.isInputShutdown() now also testing the raw EndPoint
for input shutdown, not only the SSLEngine.
This commit is contained in:
Simone Bordet 2017-09-04 15:55:12 +02:00
parent afaa170cd9
commit 9c03e66670
1 changed files with 1 additions and 1 deletions

View File

@ -1121,7 +1121,7 @@ public class SslConnection extends AbstractConnection
@Override
public boolean isInputShutdown()
{
return _sslEngine.isInboundDone();
return getEndPoint().isInputShutdown() || _sslEngine.isInboundDone();
}
private void notifyHandshakeSucceeded(SSLEngine sslEngine)