mirror of
https://github.com/bestnite/sub2clash.git
synced 2025-06-18 05:03:18 +08:00
17 lines
814 B
Go
17 lines
814 B
Go
package proxy
|
|
|
|
type Anytls struct {
|
|
Server string `yaml:"server"`
|
|
Port int `yaml:"port"`
|
|
Password string `yaml:"password,omitempty"`
|
|
Alpn []string `yaml:"alpn,omitempty"`
|
|
Sni string `yaml:"sni,omitempty"`
|
|
ClientFingerprint string `yaml:"client-fingerprint,omitempty"`
|
|
SkipCertVerify bool `yaml:"skip-cert-verify,omitempty"`
|
|
Fingerprint string `yaml:"fingerprint,omitempty"`
|
|
UDP bool `yaml:"udp,omitempty"`
|
|
IdleSessionCheckInterval int `yaml:"idle-session-check-interval,omitempty"`
|
|
IdleSessionTimeout int `yaml:"idle-session-timeout,omitempty"`
|
|
MinIdleSession int `yaml:"min-idle-session,omitempty"`
|
|
}
|