mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use buffered qlog writers in example client and server, and interop
This commit is contained in:
parent
76bdd4a397
commit
86e9ab8f20
3 changed files with 24 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"crypto/tls"
|
||||
"crypto/x509"
|
||||
|
@ -61,7 +62,13 @@ func main() {
|
|||
log.Fatal(err)
|
||||
}
|
||||
log.Printf("Creating qlog file %s.\n", filename)
|
||||
return f
|
||||
return struct {
|
||||
io.Writer
|
||||
io.Closer
|
||||
}{
|
||||
bufio.NewWriter(f),
|
||||
f,
|
||||
}
|
||||
}
|
||||
}
|
||||
roundTripper := &http3.RoundTripper{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue