fix certificate check in the example client

This commit is contained in:
Marten Seemann 2019-11-07 10:29:55 +07:00
parent 914193cc9d
commit 4febf95c0b
2 changed files with 18 additions and 14 deletions

View file

@ -3,6 +3,7 @@ package main
import (
"bytes"
"crypto/tls"
"crypto/x509"
"flag"
"io"
"net/http"
@ -29,9 +30,14 @@ func main() {
}
logger.SetLogTimeFormat("")
pool, err := x509.SystemCertPool()
if err != nil {
panic(err)
}
testdata.AddRootCA(pool)
roundTripper := &http3.RoundTripper{
TLSClientConfig: &tls.Config{
RootCAs: testdata.GetRootCA(),
RootCAs: pool,
InsecureSkipVerify: *insecure,
},
}