mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
example: remove -qlog flag in favor of QLOGDIR (#4243)
This commit is contained in:
parent
13327521a5
commit
3449ace5a6
2 changed files with 9 additions and 40 deletions
|
@ -1,13 +1,10 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -17,8 +14,6 @@ import (
|
||||||
"github.com/quic-go/quic-go"
|
"github.com/quic-go/quic-go"
|
||||||
"github.com/quic-go/quic-go/http3"
|
"github.com/quic-go/quic-go/http3"
|
||||||
"github.com/quic-go/quic-go/internal/testdata"
|
"github.com/quic-go/quic-go/internal/testdata"
|
||||||
"github.com/quic-go/quic-go/internal/utils"
|
|
||||||
"github.com/quic-go/quic-go/logging"
|
|
||||||
"github.com/quic-go/quic-go/qlog"
|
"github.com/quic-go/quic-go/qlog"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -26,7 +21,6 @@ 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")
|
||||||
enableQlog := flag.Bool("qlog", false, "output a qlog (in the same directory)")
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
urls := flag.Args()
|
urls := flag.Args()
|
||||||
|
|
||||||
|
@ -46,25 +40,15 @@ func main() {
|
||||||
}
|
}
|
||||||
testdata.AddRootCA(pool)
|
testdata.AddRootCA(pool)
|
||||||
|
|
||||||
var qconf quic.Config
|
|
||||||
if *enableQlog {
|
|
||||||
qconf.Tracer = func(ctx context.Context, p logging.Perspective, connID quic.ConnectionID) *logging.ConnectionTracer {
|
|
||||||
filename := fmt.Sprintf("client_%s.qlog", connID)
|
|
||||||
f, err := os.Create(filename)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
log.Printf("Creating qlog file %s.\n", filename)
|
|
||||||
return qlog.NewConnectionTracer(utils.NewBufferedWriteCloser(bufio.NewWriter(f), f), p, connID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
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,
|
QuicConfig: &quic.Config{
|
||||||
|
Tracer: qlog.DefaultTracer,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
defer roundTripper.Close()
|
defer roundTripper.Close()
|
||||||
hclient := &http.Client{
|
hclient := &http.Client{
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"context"
|
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"errors"
|
"errors"
|
||||||
"flag"
|
"flag"
|
||||||
|
@ -11,7 +9,6 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"mime/multipart"
|
"mime/multipart"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -21,8 +18,6 @@ import (
|
||||||
"github.com/quic-go/quic-go"
|
"github.com/quic-go/quic-go"
|
||||||
"github.com/quic-go/quic-go/http3"
|
"github.com/quic-go/quic-go/http3"
|
||||||
"github.com/quic-go/quic-go/internal/testdata"
|
"github.com/quic-go/quic-go/internal/testdata"
|
||||||
"github.com/quic-go/quic-go/internal/utils"
|
|
||||||
"github.com/quic-go/quic-go/logging"
|
|
||||||
"github.com/quic-go/quic-go/qlog"
|
"github.com/quic-go/quic-go/qlog"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -145,7 +140,6 @@ func main() {
|
||||||
tcp := flag.Bool("tcp", false, "also listen on TCP")
|
tcp := flag.Bool("tcp", false, "also listen on TCP")
|
||||||
key := flag.String("key", "", "TLS key (requires -cert option)")
|
key := flag.String("key", "", "TLS key (requires -cert option)")
|
||||||
cert := flag.String("cert", "", "TLS certificate (requires -key option)")
|
cert := flag.String("cert", "", "TLS certificate (requires -key option)")
|
||||||
enableQlog := flag.Bool("qlog", false, "output a qlog (in the same directory)")
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
if len(bs) == 0 {
|
if len(bs) == 0 {
|
||||||
|
@ -153,18 +147,6 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
handler := setupHandler(*www)
|
handler := setupHandler(*www)
|
||||||
quicConf := &quic.Config{}
|
|
||||||
if *enableQlog {
|
|
||||||
quicConf.Tracer = func(ctx context.Context, p logging.Perspective, connID quic.ConnectionID) *logging.ConnectionTracer {
|
|
||||||
filename := fmt.Sprintf("server_%s.qlog", connID)
|
|
||||||
f, err := os.Create(filename)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
log.Printf("Creating qlog file %s.\n", filename)
|
|
||||||
return qlog.NewConnectionTracer(utils.NewBufferedWriteCloser(bufio.NewWriter(f), f), p, connID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
wg.Add(len(bs))
|
wg.Add(len(bs))
|
||||||
|
@ -176,6 +158,7 @@ func main() {
|
||||||
certFile, keyFile = testdata.GetCertificatePaths()
|
certFile, keyFile = testdata.GetCertificatePaths()
|
||||||
}
|
}
|
||||||
for _, b := range bs {
|
for _, b := range bs {
|
||||||
|
fmt.Println("listening on", b)
|
||||||
bCap := b
|
bCap := b
|
||||||
go func() {
|
go func() {
|
||||||
var err error
|
var err error
|
||||||
|
@ -183,9 +166,11 @@ func main() {
|
||||||
err = http3.ListenAndServe(bCap, certFile, keyFile, handler)
|
err = http3.ListenAndServe(bCap, certFile, keyFile, handler)
|
||||||
} else {
|
} else {
|
||||||
server := http3.Server{
|
server := http3.Server{
|
||||||
Handler: handler,
|
Handler: handler,
|
||||||
Addr: bCap,
|
Addr: bCap,
|
||||||
QuicConfig: quicConf,
|
QuicConfig: &quic.Config{
|
||||||
|
Tracer: qlog.DefaultTracer,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
err = server.ListenAndServeTLS(certFile, keyFile)
|
err = server.ListenAndServeTLS(certFile, keyFile)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue