Improve: add session cache for trojan

This commit is contained in:
Dreamacro
2020-03-19 22:39:09 +08:00
parent b562f28c1b
commit b068466108
2 changed files with 11 additions and 8 deletions

View File

@ -28,10 +28,11 @@ var (
)
type Option struct {
Password string
ALPN []string
ServerName string
SkipCertVerify bool
Password string
ALPN []string
ServerName string
SkipCertVerify bool
ClientSessionCache tls.ClientSessionCache
}
type Trojan struct {
@ -50,6 +51,7 @@ func (t *Trojan) StreamConn(conn net.Conn) (net.Conn, error) {
MinVersion: tls.VersionTLS12,
InsecureSkipVerify: t.option.SkipCertVerify,
ServerName: t.option.ServerName,
ClientSessionCache: t.option.ClientSessionCache,
}
tlsConn := tls.Client(conn, tlsConfig)