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/Makefile.inc | |
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/Makefile.inc')
-rw-r--r-- | lib/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.inc b/lib/Makefile.inc index 12b2d7aa6..08b0f73a3 100644 --- a/lib/Makefile.inc +++ b/lib/Makefile.inc @@ -36,9 +36,9 @@ LIB_VTLS_HFILES = vtls/bearssl.h vtls/gskit.h vtls/gtls.h vtls/mbedtls.h \ vtls/mbedtls_threadlock.h vtls/mesalink.h vtls/nssg.h vtls/openssl.h \ vtls/schannel.h vtls/sectransp.h vtls/vtls.h vtls/wolfssl.h -LIB_VQUIC_CFILES = vquic/ngtcp2.c vquic/quiche.c +LIB_VQUIC_CFILES = vquic/ngtcp2.c vquic/quiche.c vquic/vquic.c -LIB_VQUIC_HFILES = vquic/ngtcp2.h vquic/quiche.h +LIB_VQUIC_HFILES = vquic/ngtcp2.h vquic/quiche.h vquic/vquic.h LIB_VSSH_CFILES = vssh/libssh.c vssh/libssh2.c vssh/wolfssh.c |