Clash.Meta/listener/config/shadowsocks.go
2025-04-22 21:16:56 +08:00

23 lines
450 B
Go

package config
import (
"github.com/metacubex/mihomo/listener/sing"
"encoding/json"
)
type ShadowsocksServer struct {
Enable bool
Listen string
Password string
Cipher string
Udp bool
MuxOption sing.MuxOption `yaml:"mux-option" json:"mux-option,omitempty"`
ShadowTLS ShadowTLS `yaml:"shadow-tls" json:"shadow-tls,omitempty"`
}
func (t ShadowsocksServer) String() string {
b, _ := json.Marshal(t)
return string(b)
}