From 3d764a8bce498283fd290ee36cfa6a621da75321 Mon Sep 17 00:00:00 2001 From: Hellojack <106379370+H1JK@users.noreply.github.com> Date: Tue, 7 Jun 2022 12:53:27 +0800 Subject: [PATCH] Fix Simple-Obfs --- Netch/Servers/Shadowsocks/ShadowsocksUtil.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Netch/Servers/Shadowsocks/ShadowsocksUtil.cs b/Netch/Servers/Shadowsocks/ShadowsocksUtil.cs index 1331ebeb..5da279a8 100644 --- a/Netch/Servers/Shadowsocks/ShadowsocksUtil.cs +++ b/Netch/Servers/Shadowsocks/ShadowsocksUtil.cs @@ -114,13 +114,13 @@ public class ShadowsocksUtil : IServerUtil { case "obfs-local": case "simple-obfs": - plugin = "simple-obfs"; + plugin = "obfs-local"; if (!pluginopts.Contains("obfs=")) pluginopts = "obfs=http;obfs-host=" + pluginopts; break; case "simple-obfs-tls": - plugin = "simple-obfs"; + plugin = "obfs-local"; if (!pluginopts.Contains("obfs=")) pluginopts = "obfs=tls;obfs-host=" + pluginopts;