close idle SSL with shutdown
This commit is contained in:
parent
f70ed3ac21
commit
defc729d69
|
@ -239,6 +239,21 @@ public class SslConnection extends AbstractConnection implements AsyncConnection
|
|||
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
@Override
|
||||
public void onIdleExpired()
|
||||
{
|
||||
try
|
||||
{
|
||||
_sslEndPoint.shutdownOutput();
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
LOG.warn(e);
|
||||
super.onIdleExpired();
|
||||
}
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
public void onInputShutdown() throws IOException
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue