mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
make the buffered qlog writer used in interop flush before closing
This commit is contained in:
parent
2f2583beb0
commit
3e8c3cafc1
5 changed files with 57 additions and 21 deletions
|
@ -62,13 +62,7 @@ func main() {
|
|||
log.Fatal(err)
|
||||
}
|
||||
log.Printf("Creating qlog file %s.\n", filename)
|
||||
return struct {
|
||||
io.Writer
|
||||
io.Closer
|
||||
}{
|
||||
bufio.NewWriter(f),
|
||||
f,
|
||||
}
|
||||
return utils.NewBufferedWriteCloser(bufio.NewWriter(f), f)
|
||||
}
|
||||
}
|
||||
roundTripper := &http3.RoundTripper{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue