mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
Fix(vmess): typo (#248)
This commit is contained in:
parent
b75da2c6d8
commit
f6acbaac7b
|
@ -67,7 +67,7 @@ func NewVmess(option VmessOption) (*Vmess, error) {
|
||||||
WebSocketPath: option.WSPath,
|
WebSocketPath: option.WSPath,
|
||||||
WebSocketHeaders: option.WSHeaders,
|
WebSocketHeaders: option.WSHeaders,
|
||||||
SkipCertVerify: option.SkipCertVerify,
|
SkipCertVerify: option.SkipCertVerify,
|
||||||
SessionCacahe: getClientSessionCache(),
|
SessionCache: getClientSessionCache(),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -86,7 +86,7 @@ type Config struct {
|
||||||
WebSocketPath string
|
WebSocketPath string
|
||||||
WebSocketHeaders map[string]string
|
WebSocketHeaders map[string]string
|
||||||
SkipCertVerify bool
|
SkipCertVerify bool
|
||||||
SessionCacahe tls.ClientSessionCache
|
SessionCache tls.ClientSessionCache
|
||||||
}
|
}
|
||||||
|
|
||||||
// New return a Conn with net.Conn and DstAddr
|
// New return a Conn with net.Conn and DstAddr
|
||||||
|
@ -139,7 +139,7 @@ func NewClient(config Config) (*Client, error) {
|
||||||
tlsConfig = &tls.Config{
|
tlsConfig = &tls.Config{
|
||||||
ServerName: config.HostName,
|
ServerName: config.HostName,
|
||||||
InsecureSkipVerify: config.SkipCertVerify,
|
InsecureSkipVerify: config.SkipCertVerify,
|
||||||
ClientSessionCache: config.SessionCacahe,
|
ClientSessionCache: config.SessionCache,
|
||||||
}
|
}
|
||||||
if tlsConfig.ClientSessionCache == nil {
|
if tlsConfig.ClientSessionCache == nil {
|
||||||
tlsConfig.ClientSessionCache = getClientSessionCache()
|
tlsConfig.ClientSessionCache = getClientSessionCache()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user