8211806: TLS 1.3 handshake server name indication is missing on a session resume

Reviewed-by: xuelei, wetmore
This commit is contained in:
Jamil Nimeh 2018-10-19 18:05:50 -07:00
parent 6beba541cd
commit 137e3161c4
2 changed files with 589 additions and 0 deletions

View file

@ -50,6 +50,9 @@ final class PostHandshakeContext extends HandshakeContext {
this.localSupportedSignAlgs = new ArrayList<SignatureScheme>(
context.conSession.getLocalSupportedSignatureSchemes());
this.requestedServerNames =
context.conSession.getRequestedServerNames();
handshakeConsumers = new LinkedHashMap<>(consumers);
handshakeFinished = true;
}