Let tlsSettings.masterKeyLog and tlsSettings.fingerprint work together

This commit is contained in:
Qi Lin 2024-01-08 18:14:08 +08:00 committed by yuhan6665
parent 81f9f567ff
commit 2b08d8638e

View File

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