[gnutls-devel] GnuTLS | gnutls-cli: Add option to wait longer for resumption data (!1232)
Development of GNU's TLS library
gnutls-devel at lists.gnutls.org
Thu Apr 30 15:54:03 CEST 2020
Anderson Sasaki commented on a discussion on src/cli.c: https://gitlab.com/gnutls/gnutls/-/merge_requests/1232#note_334505861
> gnutls_datum_t edata = {NULL, 0};
>
> if (gnutls_session_is_resumed(hd->session) == 0) {
> - /* not resumed - obtain the session data */
> - ret = gnutls_session_get_data2(hd->session, &rdata);
> - if (ret < 0) {
> - rdata.data = NULL;
> - }
> + do {
> + /* not resumed - obtain the session data */
> + ret = gnutls_session_get_data2(hd->session, &rdata);
I changed my mind, making it specific for TLS 1.3, in which we can actually wait for tickets sent asynchronous after the handshake is finished, makes more sense.
I changed the code to only take effect for TLS 1.3.
--
Reply to this email directly or view it on GitLab: https://gitlab.com/gnutls/gnutls/-/merge_requests/1232#note_334505861
You're receiving this email because of your account on gitlab.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gnupg.org/pipermail/gnutls-devel/attachments/20200430/5f8badf5/attachment-0001.html>
More information about the Gnutls-devel
mailing list