Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8254967: com.sun.net.HttpsServer spins on TLS session close
Backport-of: 953e472
  • Loading branch information
TheRealMDoerr committed Jul 20, 2021
1 parent 1e1a2c4 commit 2696643
Showing 1 changed file with 6 additions and 1 deletion.
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 2696643

@openjdk-notifier
Copy link

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.