Selaa lähdekoodia

Inbounds config: Add `mixed` as an alias of `socks`

https://github.com/XTLS/Xray-core/pull/3682#issuecomment-2292600144
RPRX 9 kuukautta sitten
vanhempi
sitoutus
5af90684c4
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      infra/conf/xray.go

+ 1 - 0
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) },