mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
add a -qlog flag to the example client and server
This commit is contained in:
parent
b031615db5
commit
b1a3e7a00b
3 changed files with 32 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,6 +3,7 @@ debug.test
|
||||||
main
|
main
|
||||||
mockgen_tmp.go
|
mockgen_tmp.go
|
||||||
*.qtr
|
*.qtr
|
||||||
|
*.qlog
|
||||||
|
|
||||||
fuzzing/*/*.zip
|
fuzzing/*/*.zip
|
||||||
fuzzing/*/coverprofile
|
fuzzing/*/coverprofile
|
||||||
|
|
|
@ -5,12 +5,14 @@ import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"github.com/lucas-clemente/quic-go"
|
||||||
"github.com/lucas-clemente/quic-go/http3"
|
"github.com/lucas-clemente/quic-go/http3"
|
||||||
"github.com/lucas-clemente/quic-go/internal/testdata"
|
"github.com/lucas-clemente/quic-go/internal/testdata"
|
||||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||||
|
@ -21,6 +23,7 @@ func main() {
|
||||||
quiet := flag.Bool("q", false, "don't print the data")
|
quiet := flag.Bool("q", false, "don't print the data")
|
||||||
keyLogFile := flag.String("keylog", "", "key log file")
|
keyLogFile := flag.String("keylog", "", "key log file")
|
||||||
insecure := flag.Bool("insecure", false, "skip certificate verification")
|
insecure := flag.Bool("insecure", false, "skip certificate verification")
|
||||||
|
qlog := flag.Bool("qlog", false, "output a qlog (in the same directory)")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
urls := flag.Args()
|
urls := flag.Args()
|
||||||
|
|
||||||
|
@ -48,12 +51,26 @@ func main() {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
testdata.AddRootCA(pool)
|
testdata.AddRootCA(pool)
|
||||||
|
|
||||||
|
var qconf quic.Config
|
||||||
|
if *qlog {
|
||||||
|
qconf.GetLogWriter = func(connID []byte) io.WriteCloser {
|
||||||
|
filename := fmt.Sprintf("client_%x.qlog", connID)
|
||||||
|
f, err := os.Create(filename)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
log.Printf("Creating qlog file %s.\n", filename)
|
||||||
|
return f
|
||||||
|
}
|
||||||
|
}
|
||||||
roundTripper := &http3.RoundTripper{
|
roundTripper := &http3.RoundTripper{
|
||||||
TLSClientConfig: &tls.Config{
|
TLSClientConfig: &tls.Config{
|
||||||
RootCAs: pool,
|
RootCAs: pool,
|
||||||
InsecureSkipVerify: *insecure,
|
InsecureSkipVerify: *insecure,
|
||||||
KeyLogWriter: keyLog,
|
KeyLogWriter: keyLog,
|
||||||
},
|
},
|
||||||
|
QuicConfig: &qconf,
|
||||||
}
|
}
|
||||||
defer roundTripper.Close()
|
defer roundTripper.Close()
|
||||||
hclient := &http.Client{
|
hclient := &http.Client{
|
||||||
|
|
|
@ -186,6 +186,7 @@ func main() {
|
||||||
www := flag.String("www", "", "www data")
|
www := flag.String("www", "", "www data")
|
||||||
tcp := flag.Bool("tcp", false, "also listen on TCP")
|
tcp := flag.Bool("tcp", false, "also listen on TCP")
|
||||||
trace := flag.Bool("trace", false, "enable quic-trace")
|
trace := flag.Bool("trace", false, "enable quic-trace")
|
||||||
|
qlog := flag.Bool("qlog", false, "output a qlog (in the same directory)")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
logger := utils.DefaultLogger
|
logger := utils.DefaultLogger
|
||||||
|
@ -202,9 +203,20 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
handler := setupHandler(*www, *trace)
|
handler := setupHandler(*www, *trace)
|
||||||
var quicConf *quic.Config
|
quicConf := &quic.Config{}
|
||||||
if *trace {
|
if *trace {
|
||||||
quicConf = &quic.Config{QuicTracer: tracer}
|
quicConf.QuicTracer = tracer
|
||||||
|
}
|
||||||
|
if *qlog {
|
||||||
|
quicConf.GetLogWriter = func(connID []byte) io.WriteCloser {
|
||||||
|
filename := fmt.Sprintf("server_%x.qlog", connID)
|
||||||
|
f, err := os.Create(filename)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
log.Printf("Creating qlog file %s.\n", filename)
|
||||||
|
return f
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue