mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-05-15 06:28:03 +08:00
23 lines
477 B
Go
23 lines
477 B
Go
package config
|
|
|
|
type ShadowTLS struct {
|
|
Enable bool
|
|
Version int
|
|
Password string
|
|
Users []ShadowTLSUser
|
|
Handshake ShadowTLSHandshakeOptions
|
|
HandshakeForServerName map[string]ShadowTLSHandshakeOptions
|
|
StrictMode bool
|
|
WildcardSNI string
|
|
}
|
|
|
|
type ShadowTLSUser struct {
|
|
Name string
|
|
Password string
|
|
}
|
|
|
|
type ShadowTLSHandshakeOptions struct {
|
|
Dest string
|
|
Proxy string
|
|
}
|