1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

quiche: add SSLKEYLOGFILE support

This commit is contained in:
Daniel Stenberg 2019-08-09 12:23:18 +02:00
parent 6ee9e4bd47
commit 4570c22c57
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -158,6 +158,9 @@ CURLcode Curl_quic_connect(struct connectdata *conn, curl_socket_t sockfd,
if(result)
return result;
if(getenv("SSLKEYLOGFILE"))
quiche_config_log_keys(qs->cfg);
qs->conn = quiche_connect(conn->host.name, (const uint8_t *) qs->scid,
sizeof(qs->scid), qs->cfg);
if(!qs->conn) {