Skip to content

Commit

Permalink
8254967: com.sun.net.HttpsServer spins on TLS session close
Browse files Browse the repository at this point in the history
Reviewed-by: dfuchs
  • Loading branch information
Michael-Mc-Mahon committed Oct 19, 2020
1 parent 1da28de commit 953e472
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -430,11 +430,16 @@ void doClosure () throws IOException {
handshaking.lock();
ByteBuffer tmp = allocate(BufType.APPLICATION);
WrapperResult r;
Status st;
HandshakeStatus hs;
do {
tmp.clear();
tmp.flip ();
r = wrapper.wrapAndSendX (tmp, true);
} while (r.result.getStatus() != Status.CLOSED);
hs = r.result.getHandshakeStatus();
st = r.result.getStatus();
} while (st != Status.CLOSED &&
!(st == Status.OK && hs == HandshakeStatus.NOT_HANDSHAKING));
} finally {
handshaking.unlock();
}
Expand Down

1 comment on commit 953e472

@bridgekeeper
Copy link

@bridgekeeper bridgekeeper bot commented on 953e472 Oct 19, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.