Fix(vmess): typo (#248)

This commit is contained in:
X. Jason Lyu 2019-07-29 12:25:29 +08:00 committed by Dreamacro
parent b75da2c6d8
commit f6acbaac7b
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ func NewVmess(option VmessOption) (*Vmess, error) {
WebSocketPath: option.WSPath,
WebSocketHeaders: option.WSHeaders,
SkipCertVerify: option.SkipCertVerify,
SessionCacahe: getClientSessionCache(),
SessionCache: getClientSessionCache(),
})
if err != nil {
return nil, err

View File

@ -86,7 +86,7 @@ type Config struct {
WebSocketPath string
WebSocketHeaders map[string]string
SkipCertVerify bool
SessionCacahe tls.ClientSessionCache
SessionCache tls.ClientSessionCache
}
// New return a Conn with net.Conn and DstAddr
@ -139,7 +139,7 @@ func NewClient(config Config) (*Client, error) {
tlsConfig = &tls.Config{
ServerName: config.HostName,
InsecureSkipVerify: config.SkipCertVerify,
ClientSessionCache: config.SessionCacahe,
ClientSessionCache: config.SessionCache,
}
if tlsConfig.ClientSessionCache == nil {
tlsConfig.ClientSessionCache = getClientSessionCache()