Clash.Meta/listener/config/shadowtls.go

23 lines
477 B
Go
Raw Normal View History

2025-04-22 20:49:54 +08:00
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
}