From 5af90684c44d88036b99fbd441f3ad96847992a2 Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Tue, 31 Dec 2024 11:55:16 +0000 Subject: [PATCH] Inbounds config: Add `mixed` as an alias of `socks` https://github.com/XTLS/Xray-core/pull/3682#issuecomment-2292600144 --- infra/conf/xray.go | 1 + 1 file changed, 1 insertion(+) diff --git a/infra/conf/xray.go b/infra/conf/xray.go index ee9e6dfd..4de55bad 100644 --- a/infra/conf/xray.go +++ b/infra/conf/xray.go @@ -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) },