Update SSL_trace() to know about ticket_nonce
Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/3852)
This commit is contained in:
parent
b81bd33680
commit
8f81476145
1 changed files with 3 additions and 0 deletions
|
@ -1341,6 +1341,9 @@ static int ssl_print_ticket(BIO *bio, int indent, SSL *s,
|
|||
msg += 4;
|
||||
BIO_indent(bio, indent + 2, 80);
|
||||
BIO_printf(bio, "ticket_age_add=%u\n", ticket_age_add);
|
||||
if (!ssl_print_hexbuf(bio, indent + 2, "ticket_nonce", 1, &msg,
|
||||
&msglen))
|
||||
return 0;
|
||||
}
|
||||
if (!ssl_print_hexbuf(bio, indent + 2, "ticket", 2, &msg, &msglen))
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue