mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
move function to create the TLS key log file to a separate file
This commit is contained in:
parent
dd035c2f12
commit
89728126cc
3 changed files with 37 additions and 20 deletions
|
@ -11,10 +11,12 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
|
||||
"golang.org/x/sync/errgroup"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/http3"
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
"github.com/lucas-clemente/quic-go/interop/http09"
|
||||
"golang.org/x/sync/errgroup"
|
||||
"github.com/lucas-clemente/quic-go/interop/utils"
|
||||
)
|
||||
|
||||
var errUnsupported = errors.New("unsupported test case")
|
||||
|
@ -30,15 +32,13 @@ func main() {
|
|||
defer logFile.Close()
|
||||
log.SetOutput(logFile)
|
||||
|
||||
var keyLog io.Writer
|
||||
if filename := os.Getenv("SSLKEYLOGFILE"); len(filename) > 0 {
|
||||
f, err := os.Create(filename)
|
||||
if err != nil {
|
||||
fmt.Printf("Could not create key log file: %s\n", err.Error())
|
||||
os.Exit(1)
|
||||
}
|
||||
defer f.Close()
|
||||
keyLog = f
|
||||
keyLog, err := utils.GetSSLKeyLog()
|
||||
if err != nil {
|
||||
fmt.Printf("Could not create key log: %s\n", err.Error())
|
||||
os.Exit(1)
|
||||
}
|
||||
if keyLog != nil {
|
||||
defer keyLog.Close()
|
||||
}
|
||||
|
||||
tlsConf = &tls.Config{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue