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
9baf06fc3f

Let's update curl so that tools know what format we are using!

Closes #8316
This commit is contained in:
Lucas Pardue 2022-01-21 18:38:57 +00:00 committed by Daniel Stenberg
parent f74b6d8551
commit 8a3e67e732
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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,