Inbounds config: Add mixed as an alias of socks

https://github.com/XTLS/Xray-core/pull/3682#issuecomment-2292600144
This commit is contained in:
RPRX 2024-12-31 11:55:16 +00:00 committed by GitHub
parent 369d8944cf
commit 5af90684c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,6 +24,7 @@ var (
"dokodemo-door": func() interface{} { return new(DokodemoConfig) },
"http": func() interface{} { return new(HTTPServerConfig) },
"shadowsocks": func() interface{} { return new(ShadowsocksServerConfig) },
"mixed": func() interface{} { return new(SocksServerConfig) },
"socks": func() interface{} { return new(SocksServerConfig) },
"vless": func() interface{} { return new(VLessInboundConfig) },
"vmess": func() interface{} { return new(VMessInboundConfig) },