use the self-signed certificate for the example server and client

This commit is contained in:
Marten Seemann 2018-12-13 14:29:53 +06:30
parent d86e989333
commit f6357dc858
2 changed files with 10 additions and 17 deletions

View file

@ -2,12 +2,14 @@ package main
import (
"bytes"
"crypto/tls"
"flag"
"io"
"net/http"
"sync"
"github.com/lucas-clemente/quic-go/h2quic"
"github.com/lucas-clemente/quic-go/internal/testdata"
"github.com/lucas-clemente/quic-go/internal/utils"
)
@ -26,7 +28,11 @@ func main() {
}
logger.SetLogTimeFormat("")
roundTripper := &h2quic.RoundTripper{}
roundTripper := &h2quic.RoundTripper{
TLSClientConfig: &tls.Config{
RootCAs: testdata.GetRootCA(),
},
}
defer roundTripper.Close()
hclient := &http.Client{
Transport: roundTripper,