Browse Source

Let `tlsSettings.masterKeyLog` and `tlsSettings.fingerprint` work together

pull/2930/head
Qi Lin 11 months ago committed by yuhan6665
parent
commit
2b08d8638e
  1. 1
      transport/internet/tls/tls.go

1
transport/internet/tls/tls.go

@ -118,6 +118,7 @@ func copyConfig(c *tls.Config) *utls.Config {
ServerName: c.ServerName,
InsecureSkipVerify: c.InsecureSkipVerify,
VerifyPeerCertificate: c.VerifyPeerCertificate,
KeyLogWriter: c.KeyLogWriter,
}
}

Loading…
Cancel
Save