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

View file

@ -10,14 +10,13 @@ import (
"log" "log"
"mime/multipart" "mime/multipart"
"net/http" "net/http"
"path"
"runtime"
"strings" "strings"
"sync" "sync"
_ "net/http/pprof" _ "net/http/pprof"
"github.com/lucas-clemente/quic-go/h2quic" "github.com/lucas-clemente/quic-go/h2quic"
"github.com/lucas-clemente/quic-go/internal/testdata"
"github.com/lucas-clemente/quic-go/internal/utils" "github.com/lucas-clemente/quic-go/internal/utils"
) )
@ -99,15 +98,6 @@ func init() {
}) })
} }
func getBuildDir() string {
_, filename, _, ok := runtime.Caller(0)
if !ok {
panic("Failed to get current frame")
}
return path.Dir(filename)
}
func main() { func main() {
// defer profile.Start().Stop() // defer profile.Start().Stop()
go func() { go func() {
@ -118,7 +108,6 @@ func main() {
verbose := flag.Bool("v", false, "verbose") verbose := flag.Bool("v", false, "verbose")
bs := binds{} bs := binds{}
flag.Var(&bs, "bind", "bind to") flag.Var(&bs, "bind", "bind to")
certPath := flag.String("certpath", getBuildDir(), "certificate directory")
www := flag.String("www", "/var/www", "www data") www := flag.String("www", "/var/www", "www data")
tcp := flag.Bool("tcp", false, "also listen on TCP") tcp := flag.Bool("tcp", false, "also listen on TCP")
flag.Parse() flag.Parse()
@ -132,9 +121,6 @@ func main() {
} }
logger.SetLogTimeFormat("") logger.SetLogTimeFormat("")
certFile := *certPath + "/fullchain.pem"
keyFile := *certPath + "/privkey.pem"
http.Handle("/", http.FileServer(http.Dir(*www))) http.Handle("/", http.FileServer(http.Dir(*www)))
if len(bs) == 0 { if len(bs) == 0 {
@ -148,12 +134,13 @@ func main() {
go func() { go func() {
var err error var err error
if *tcp { if *tcp {
certFile, keyFile := testdata.GetCertificatePaths()
err = h2quic.ListenAndServe(bCap, certFile, keyFile, nil) err = h2quic.ListenAndServe(bCap, certFile, keyFile, nil)
} else { } else {
server := h2quic.Server{ server := h2quic.Server{
Server: &http.Server{Addr: bCap}, Server: &http.Server{Addr: bCap},
} }
err = server.ListenAndServeTLS(certFile, keyFile) err = server.ListenAndServeTLS(testdata.GetCertificatePaths())
} }
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)