357240 work in progress

This commit is contained in:
Greg Wilkins 2011-09-28 00:08:40 +10:00
parent 61dd1493b1
commit 16d54532d6
1 changed files with 3 additions and 10 deletions

View File

@ -194,16 +194,9 @@ public class SslSelectChannelEndPoint extends SelectChannelEndPoint
public void shutdownOutput() throws IOException
{
LOG.debug("{} shutdownOutput",_session);
try
{
// All SSL closes should be graceful, as it is more secure.
// So normal SSL close can be used here.
close();
}
finally
{
super.shutdownOutput();
}
// All SSL closes should be graceful, as it is more secure.
// So normal SSL close can be used here.
close();
}
/* ------------------------------------------------------------ */