diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-05-07 14:17:42 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-07 16:27:49 +0200 |
commit | 14c17a2b6e0c377c16db43d0e963a31db597ece5 (patch) | |
tree | c40c748e00665f6ebf7fe7fe23bcb1ef97766b2a /lib/vquic/ngtcp2.h | |
parent | 2a81439553286f12cd04a4bdcdf66d8e026d8201 (diff) | |
download | curl-14c17a2b6e0c377c16db43d0e963a31db597ece5.tar.gz |
ngtcp2: introduce qlog support
If the QLOGDIR environment variable is set, enable qlogging.
... and create Curl_qlogdir() in the new generic vquic/vquic.c file for
QUIC functions that are backend independent.
Closes #5353
Diffstat (limited to 'lib/vquic/ngtcp2.h')
-rw-r--r-- | lib/vquic/ngtcp2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vquic/ngtcp2.h b/lib/vquic/ngtcp2.h index 06337f6f9..e2f8b5600 100644 --- a/lib/vquic/ngtcp2.h +++ b/lib/vquic/ngtcp2.h @@ -63,6 +63,7 @@ struct quicsocket { nghttp3_conn *h3conn; nghttp3_conn_settings h3settings; + int qlogfd; }; #include "urldata.h" |