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
1 changed files with 1 additions and 0 deletions

View File

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