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
@ -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…
Reference in New Issue
Block a user