stricter plugin name fix for SIP002 URI

This commit is contained in:
DHR60 2025-11-20 14:18:13 +08:00
parent ffd4249d43
commit 963db90f4c

View file

@ -185,6 +185,13 @@ public class ShadowsocksFmt : BaseFmt
var pluginName = pluginParts[0];
// A typo in https://github.com/shadowsocks/shadowsocks-org/blob/6b1c064db4129de99c516294960e731934841c94/docs/doc/sip002.md?plain=1#L15
// "simple-obfs" should be "obfs-local"
if (pluginName == "simple-obfs")
{
pluginName = "obfs-local";
}
// Parse obfs-local plugin
if (pluginName == "obfs-local")
{