From: Lucas Pardue Date: Fri, 21 Jan 2022 18:38:57 +0000 (+0000) Subject: quiche: change qlog file extension to `.sqlog` X-Git-Tag: curl-7_82_0~190 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a3e67e732cff0b988f1d6f2d02a2c9cd2e87b1f;p=thirdparty%2Fcurl.git quiche: change qlog file extension to `.sqlog` quiche has just switched it's qlog serialization format to JSON-SEQ by default . The spec says this SHOULD use `.sqlog` extension. I believe ngtcp2 also supports JSON-SEQ by default as of https://github.com/ngtcp2/ngtcp2/commit/9baf06fc3f352a1d062b6953ae1de22cae30639d Let's update curl so that tools know what format we are using! Closes #8316 --- diff --git a/lib/vquic/vquic.c b/lib/vquic/vquic.c index 7c0cc6df2a..06ab9f4e15 100644 --- a/lib/vquic/vquic.c +++ b/lib/vquic/vquic.c @@ -67,7 +67,7 @@ CURLcode Curl_qlogdir(struct Curl_easy *data, result = Curl_dyn_add(&fname, hex); } if(!result) - result = Curl_dyn_add(&fname, ".qlog"); + result = Curl_dyn_add(&fname, ".sqlog"); if(!result) { int qlogfd = open(Curl_dyn_ptr(&fname), QLOGMODE,