From 8a3e67e732cff0b988f1d6f2d02a2c9cd2e87b1f Mon Sep 17 00:00:00 2001 From: Lucas Pardue Date: Fri, 21 Jan 2022 18:38:57 +0000 Subject: [PATCH] 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 --- lib/vquic/vquic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.47.3