commit | bd84ac873784f61a94e80678c6e677ef4c4dc894 | [log] [tgz] |
---|---|---|
author | Olivier Houchard <ohouchard@haproxy.com> | Fri Nov 03 13:43:35 2017 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Wed Nov 08 14:08:07 2017 +0100 |
tree | 02d3c3ecdbe09a445188eb3f908fb07a010cd15a | |
parent | 35a63cc1c78411c65d83b995d1fbd3d73d6bf020 [diff] |
MINOR: ssl: Handle session resumption with TLS 1.3 With TLS 1.3, session aren't established until after the main handshake has completed. So we can't just rely on calling SSL_get1_session(). Instead, we now register a callback for the "new session" event. This should work for previous versions of TLS as well.