mirror of
https://github.com/curl/curl.git
synced 2026-05-03 18:17:55 +03:00
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:
parent
f74b6d8551
commit
8a3e67e732
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue