mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-14 19:45:45 +00:00
Compare commits
9 commits
366daef7c5
...
082addcf8b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
082addcf8b | ||
|
|
ae7c71c67c | ||
|
|
d8df04cdec | ||
|
|
9d17f79536 | ||
|
|
b868ea49b4 | ||
|
|
7329dbae11 | ||
|
|
695a073cd6 | ||
|
|
01c85adedf | ||
|
|
2caf8ea14f |
31 changed files with 1610 additions and 810 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
<Project>
|
<Project>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>7.20.0</Version>
|
<Version>7.20.1</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ namespace ServiceLib.Enums;
|
||||||
|
|
||||||
public enum ETransport
|
public enum ETransport
|
||||||
{
|
{
|
||||||
tcp,
|
raw,
|
||||||
kcp,
|
kcp,
|
||||||
ws,
|
ws,
|
||||||
httpupgrade,
|
httpupgrade,
|
||||||
|
|
|
||||||
|
|
@ -42,9 +42,11 @@ public class Global
|
||||||
public const string SingboxFakeIPFilterFileName = NamespaceSample + "singbox_fakeip_filter";
|
public const string SingboxFakeIPFilterFileName = NamespaceSample + "singbox_fakeip_filter";
|
||||||
|
|
||||||
public const string DefaultSecurity = "auto";
|
public const string DefaultSecurity = "auto";
|
||||||
public const string DefaultNetwork = "tcp";
|
public const string DefaultNetwork = "raw";
|
||||||
public const string TcpHeaderHttp = "http";
|
public const string RawHeaderHttp = "http";
|
||||||
public const string None = "none";
|
public const string None = "none";
|
||||||
|
public const string RawNetworkAlias = "tcp";
|
||||||
|
public const string DefaultXhttpMode = "auto";
|
||||||
public const string ProxyTag = "proxy";
|
public const string ProxyTag = "proxy";
|
||||||
public const string DirectTag = "direct";
|
public const string DirectTag = "direct";
|
||||||
public const string BlockTag = "block";
|
public const string BlockTag = "block";
|
||||||
|
|
@ -182,7 +184,7 @@ public class Global
|
||||||
@"https://raw.githubusercontent.com/Chocolate4U/Iran-v2ray-rules/main/v2rayN/"
|
@"https://raw.githubusercontent.com/Chocolate4U/Iran-v2ray-rules/main/v2rayN/"
|
||||||
];
|
];
|
||||||
|
|
||||||
public static readonly Dictionary<string, string> TcpHttpUserAgentTexts = new()
|
public static readonly Dictionary<string, string> RawHttpUserAgentTexts = new()
|
||||||
{
|
{
|
||||||
{"chrome","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" },
|
{"chrome","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" },
|
||||||
{"firefox","Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0" },
|
{"firefox","Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0" },
|
||||||
|
|
@ -292,14 +294,12 @@ public class Global
|
||||||
|
|
||||||
public static readonly List<string> Networks =
|
public static readonly List<string> Networks =
|
||||||
[
|
[
|
||||||
"tcp",
|
"raw",
|
||||||
"kcp",
|
|
||||||
"ws",
|
|
||||||
"httpupgrade",
|
|
||||||
"xhttp",
|
"xhttp",
|
||||||
"h2",
|
"kcp",
|
||||||
"quic",
|
"grpc",
|
||||||
"grpc"
|
"ws",
|
||||||
|
"httpupgrade"
|
||||||
];
|
];
|
||||||
|
|
||||||
public static readonly List<string> KcpHeaderTypes =
|
public static readonly List<string> KcpHeaderTypes =
|
||||||
|
|
|
||||||
|
|
@ -340,8 +340,9 @@ public class CoreConfigContextBuilder
|
||||||
}
|
}
|
||||||
|
|
||||||
// xhttp downloadSettings address protect
|
// xhttp downloadSettings address protect
|
||||||
if (!string.IsNullOrEmpty(node.Extra)
|
var xhttpExtra = node.GetTransportExtra().XhttpExtra;
|
||||||
&& JsonUtils.ParseJson(node.Extra) is JsonObject extra
|
if (!string.IsNullOrEmpty(xhttpExtra)
|
||||||
|
&& JsonUtils.ParseJson(xhttpExtra) is JsonObject extra
|
||||||
&& extra.TryGetPropertyValue("downloadSettings", out var dsNode)
|
&& extra.TryGetPropertyValue("downloadSettings", out var dsNode)
|
||||||
&& dsNode is JsonObject downloadSettings
|
&& dsNode is JsonObject downloadSettings
|
||||||
&& downloadSettings.TryGetPropertyValue("address", out var dAddrNode)
|
&& downloadSettings.TryGetPropertyValue("address", out var dAddrNode)
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ public class NodeValidator
|
||||||
[EConfigType.VMess, EConfigType.VLESS, EConfigType.Trojan, EConfigType.Shadowsocks];
|
[EConfigType.VMess, EConfigType.VLESS, EConfigType.Trojan, EConfigType.Shadowsocks];
|
||||||
|
|
||||||
private static readonly HashSet<string> SingboxShadowsocksAllowedTransports =
|
private static readonly HashSet<string> SingboxShadowsocksAllowedTransports =
|
||||||
[nameof(ETransport.tcp), nameof(ETransport.ws), nameof(ETransport.quic)];
|
[nameof(ETransport.raw), nameof(ETransport.ws)];
|
||||||
|
|
||||||
public static NodeValidatorResult Validate(ProfileItem item, ECoreType coreType)
|
public static NodeValidatorResult Validate(ProfileItem item, ECoreType coreType)
|
||||||
{
|
{
|
||||||
|
|
@ -141,9 +141,10 @@ public class NodeValidator
|
||||||
v.Assert(!item.PublicKey.IsNullOrEmpty(), string.Format(ResUI.MsgInvalidProperty, "PublicKey"));
|
v.Assert(!item.PublicKey.IsNullOrEmpty(), string.Format(ResUI.MsgInvalidProperty, "PublicKey"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.Network == nameof(ETransport.xhttp) && !item.Extra.IsNullOrEmpty())
|
var transport = item.GetTransportExtra();
|
||||||
|
if (item.Network == nameof(ETransport.xhttp) && !transport.XhttpExtra.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
if (JsonUtils.ParseJson(item.Extra) is null)
|
if (JsonUtils.ParseJson(transport.XhttpExtra) is null)
|
||||||
{
|
{
|
||||||
v.Error(string.Format(ResUI.MsgInvalidProperty, "XHTTP Extra"));
|
v.Error(string.Format(ResUI.MsgInvalidProperty, "XHTTP Extra"));
|
||||||
}
|
}
|
||||||
|
|
@ -159,7 +160,7 @@ public class NodeValidator
|
||||||
}
|
}
|
||||||
|
|
||||||
// sing-box does not support non-tcp transports for protocols other than vmess/trojan/vless/shadowsocks
|
// sing-box does not support non-tcp transports for protocols other than vmess/trojan/vless/shadowsocks
|
||||||
if (!SingboxTransportSupportedProtocols.Contains(configType) && net != nameof(ETransport.tcp))
|
if (!SingboxTransportSupportedProtocols.Contains(configType) && net != nameof(ETransport.raw))
|
||||||
{
|
{
|
||||||
return string.Format(ResUI.MsgCoreNotSupportProtocolTransport,
|
return string.Format(ResUI.MsgCoreNotSupportProtocolTransport,
|
||||||
nameof(ECoreType.sing_box), configType.ToString(), net);
|
nameof(ECoreType.sing_box), configType.ToString(), net);
|
||||||
|
|
|
||||||
|
|
@ -235,9 +235,6 @@ public static class ConfigHandler
|
||||||
item.Password = profileItem.Password;
|
item.Password = profileItem.Password;
|
||||||
|
|
||||||
item.Network = profileItem.Network;
|
item.Network = profileItem.Network;
|
||||||
item.HeaderType = profileItem.HeaderType;
|
|
||||||
item.RequestHost = profileItem.RequestHost;
|
|
||||||
item.Path = profileItem.Path;
|
|
||||||
|
|
||||||
item.StreamSecurity = profileItem.StreamSecurity;
|
item.StreamSecurity = profileItem.StreamSecurity;
|
||||||
item.Sni = profileItem.Sni;
|
item.Sni = profileItem.Sni;
|
||||||
|
|
@ -249,7 +246,6 @@ public static class ConfigHandler
|
||||||
item.ShortId = profileItem.ShortId;
|
item.ShortId = profileItem.ShortId;
|
||||||
item.SpiderX = profileItem.SpiderX;
|
item.SpiderX = profileItem.SpiderX;
|
||||||
item.Mldsa65Verify = profileItem.Mldsa65Verify;
|
item.Mldsa65Verify = profileItem.Mldsa65Verify;
|
||||||
item.Extra = profileItem.Extra;
|
|
||||||
item.MuxEnabled = profileItem.MuxEnabled;
|
item.MuxEnabled = profileItem.MuxEnabled;
|
||||||
item.Cert = profileItem.Cert;
|
item.Cert = profileItem.Cert;
|
||||||
item.CertSha = profileItem.CertSha;
|
item.CertSha = profileItem.CertSha;
|
||||||
|
|
@ -296,9 +292,6 @@ public static class ConfigHandler
|
||||||
VmessSecurity = profileItem.GetProtocolExtra().VmessSecurity?.TrimEx()
|
VmessSecurity = profileItem.GetProtocolExtra().VmessSecurity?.TrimEx()
|
||||||
});
|
});
|
||||||
profileItem.Network = profileItem.Network.TrimEx();
|
profileItem.Network = profileItem.Network.TrimEx();
|
||||||
profileItem.HeaderType = profileItem.HeaderType.TrimEx();
|
|
||||||
profileItem.RequestHost = profileItem.RequestHost.TrimEx();
|
|
||||||
profileItem.Path = profileItem.Path.TrimEx();
|
|
||||||
profileItem.StreamSecurity = profileItem.StreamSecurity.TrimEx();
|
profileItem.StreamSecurity = profileItem.StreamSecurity.TrimEx();
|
||||||
|
|
||||||
if (!Global.VmessSecurities.Contains(profileItem.GetProtocolExtra().VmessSecurity))
|
if (!Global.VmessSecurities.Contains(profileItem.GetProtocolExtra().VmessSecurity))
|
||||||
|
|
@ -750,10 +743,12 @@ public static class ConfigHandler
|
||||||
profileItem.Password = profileItem.Password.TrimEx();
|
profileItem.Password = profileItem.Password.TrimEx();
|
||||||
profileItem.Network = string.Empty;
|
profileItem.Network = string.Empty;
|
||||||
|
|
||||||
if (!Global.TuicCongestionControls.Contains(profileItem.HeaderType))
|
var congestionControl = profileItem.GetProtocolExtra().CongestionControl;
|
||||||
|
if (!Global.TuicCongestionControls.Contains(congestionControl))
|
||||||
{
|
{
|
||||||
profileItem.HeaderType = Global.TuicCongestionControls.FirstOrDefault()!;
|
congestionControl = Global.TuicCongestionControls.FirstOrDefault()!;
|
||||||
}
|
}
|
||||||
|
profileItem.SetProtocolExtra(profileItem.GetProtocolExtra() with { CongestionControl = congestionControl });
|
||||||
|
|
||||||
if (profileItem.StreamSecurity.IsNullOrEmpty())
|
if (profileItem.StreamSecurity.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
|
|
@ -995,9 +990,6 @@ public static class ConfigHandler
|
||||||
profileItem.Address = profileItem.Address.TrimEx();
|
profileItem.Address = profileItem.Address.TrimEx();
|
||||||
profileItem.Password = profileItem.Password.TrimEx();
|
profileItem.Password = profileItem.Password.TrimEx();
|
||||||
profileItem.Network = profileItem.Network.TrimEx();
|
profileItem.Network = profileItem.Network.TrimEx();
|
||||||
profileItem.HeaderType = profileItem.HeaderType.TrimEx();
|
|
||||||
profileItem.RequestHost = profileItem.RequestHost.TrimEx();
|
|
||||||
profileItem.Path = profileItem.Path.TrimEx();
|
|
||||||
profileItem.StreamSecurity = profileItem.StreamSecurity.TrimEx();
|
profileItem.StreamSecurity = profileItem.StreamSecurity.TrimEx();
|
||||||
|
|
||||||
var vlessEncryption = profileItem.GetProtocolExtra().VlessEncryption?.TrimEx();
|
var vlessEncryption = profileItem.GetProtocolExtra().VlessEncryption?.TrimEx();
|
||||||
|
|
@ -1066,7 +1058,7 @@ public static class ConfigHandler
|
||||||
/// <returns>0 if successful</returns>
|
/// <returns>0 if successful</returns>
|
||||||
public static async Task<int> AddServerCommon(Config config, ProfileItem profileItem, bool toFile = true)
|
public static async Task<int> AddServerCommon(Config config, ProfileItem profileItem, bool toFile = true)
|
||||||
{
|
{
|
||||||
profileItem.ConfigVersion = 3;
|
profileItem.ConfigVersion = 4;
|
||||||
|
|
||||||
if (profileItem.StreamSecurity.IsNotEmpty())
|
if (profileItem.StreamSecurity.IsNotEmpty())
|
||||||
{
|
{
|
||||||
|
|
@ -1134,6 +1126,8 @@ public static class ConfigHandler
|
||||||
|
|
||||||
var oProtocolExtra = o.GetProtocolExtra();
|
var oProtocolExtra = o.GetProtocolExtra();
|
||||||
var nProtocolExtra = n.GetProtocolExtra();
|
var nProtocolExtra = n.GetProtocolExtra();
|
||||||
|
var oTransport = oProtocolExtra.Transport ?? new TransportExtra();
|
||||||
|
var nTransport = nProtocolExtra.Transport ?? new TransportExtra();
|
||||||
|
|
||||||
return o.ConfigType == n.ConfigType
|
return o.ConfigType == n.ConfigType
|
||||||
&& AreEqual(o.Address, n.Address)
|
&& AreEqual(o.Address, n.Address)
|
||||||
|
|
@ -1144,9 +1138,16 @@ public static class ConfigHandler
|
||||||
&& AreEqual(oProtocolExtra.SsMethod, nProtocolExtra.SsMethod)
|
&& AreEqual(oProtocolExtra.SsMethod, nProtocolExtra.SsMethod)
|
||||||
&& AreEqual(oProtocolExtra.VmessSecurity, nProtocolExtra.VmessSecurity)
|
&& AreEqual(oProtocolExtra.VmessSecurity, nProtocolExtra.VmessSecurity)
|
||||||
&& AreEqual(o.Network, n.Network)
|
&& AreEqual(o.Network, n.Network)
|
||||||
&& AreEqual(o.HeaderType, n.HeaderType)
|
&& AreEqual(oTransport.RawHeaderType, nTransport.RawHeaderType)
|
||||||
&& AreEqual(o.RequestHost, n.RequestHost)
|
&& AreEqual(oTransport.Host, nTransport.Host)
|
||||||
&& AreEqual(o.Path, n.Path)
|
&& AreEqual(oTransport.Path, nTransport.Path)
|
||||||
|
&& AreEqual(oTransport.XhttpMode, nTransport.XhttpMode)
|
||||||
|
&& AreEqual(oTransport.XhttpExtra, nTransport.XhttpExtra)
|
||||||
|
&& AreEqual(oTransport.GrpcAuthority, nTransport.GrpcAuthority)
|
||||||
|
&& AreEqual(oTransport.GrpcServiceName, nTransport.GrpcServiceName)
|
||||||
|
&& AreEqual(oTransport.GrpcMode, nTransport.GrpcMode)
|
||||||
|
&& AreEqual(oTransport.KcpHeaderType, nTransport.KcpHeaderType)
|
||||||
|
&& AreEqual(oTransport.KcpSeed, nTransport.KcpSeed)
|
||||||
&& (o.ConfigType == EConfigType.Trojan || o.StreamSecurity == n.StreamSecurity)
|
&& (o.ConfigType == EConfigType.Trojan || o.StreamSecurity == n.StreamSecurity)
|
||||||
&& AreEqual(oProtocolExtra.Flow, nProtocolExtra.Flow)
|
&& AreEqual(oProtocolExtra.Flow, nProtocolExtra.Flow)
|
||||||
&& AreEqual(oProtocolExtra.SalamanderPass, nProtocolExtra.SalamanderPass)
|
&& AreEqual(oProtocolExtra.SalamanderPass, nProtocolExtra.SalamanderPass)
|
||||||
|
|
@ -1432,7 +1433,7 @@ public static class ConfigHandler
|
||||||
else if (node.ConfigType == EConfigType.Custom
|
else if (node.ConfigType == EConfigType.Custom
|
||||||
&& node.PreSocksPort is > 0 and <= 65535)
|
&& node.PreSocksPort is > 0 and <= 65535)
|
||||||
{
|
{
|
||||||
var preCoreType = AppManager.Instance.RunningCoreType = config.TunModeItem.EnableTun ? ECoreType.sing_box : ECoreType.Xray;
|
var preCoreType = config.TunModeItem.EnableTun ? ECoreType.sing_box : ECoreType.Xray;
|
||||||
itemSocks = new ProfileItem()
|
itemSocks = new ProfileItem()
|
||||||
{
|
{
|
||||||
CoreType = preCoreType,
|
CoreType = preCoreType,
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ namespace ServiceLib.Handler.Fmt;
|
||||||
public class BaseFmt
|
public class BaseFmt
|
||||||
{
|
{
|
||||||
private static readonly string[] _allowInsecureArray = new[] { "insecure", "allowInsecure", "allow_insecure" };
|
private static readonly string[] _allowInsecureArray = new[] { "insecure", "allowInsecure", "allow_insecure" };
|
||||||
|
private static string UrlEncodeSafe(string? value) => Utils.UrlEncode(value ?? string.Empty);
|
||||||
|
|
||||||
protected static string GetIpv6(string address)
|
protected static string GetIpv6(string address)
|
||||||
{
|
{
|
||||||
|
|
@ -21,6 +22,8 @@ public class BaseFmt
|
||||||
|
|
||||||
protected static int ToUriQuery(ProfileItem item, string? securityDef, ref Dictionary<string, string> dicQuery)
|
protected static int ToUriQuery(ProfileItem item, string? securityDef, ref Dictionary<string, string> dicQuery)
|
||||||
{
|
{
|
||||||
|
var transport = item.GetTransportExtra();
|
||||||
|
|
||||||
if (item.StreamSecurity.IsNotEmpty())
|
if (item.StreamSecurity.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("security", item.StreamSecurity);
|
dicQuery.Add("security", item.StreamSecurity);
|
||||||
|
|
@ -87,54 +90,65 @@ public class BaseFmt
|
||||||
dicQuery.Add("fm", Utils.UrlEncode(finalmask));
|
dicQuery.Add("fm", Utils.UrlEncode(finalmask));
|
||||||
}
|
}
|
||||||
|
|
||||||
dicQuery.Add("type", item.Network.IsNotEmpty() ? item.Network : nameof(ETransport.tcp));
|
var network = item.GetNetwork();
|
||||||
|
if (!Global.Networks.Contains(network))
|
||||||
switch (item.Network)
|
|
||||||
{
|
{
|
||||||
case nameof(ETransport.tcp):
|
network = nameof(ETransport.raw);
|
||||||
dicQuery.Add("headerType", item.HeaderType.IsNotEmpty() ? item.HeaderType : Global.None);
|
}
|
||||||
if (item.RequestHost.IsNotEmpty())
|
|
||||||
|
//dicQuery.Add("type", network);
|
||||||
|
dicQuery.Add("type", network == nameof(ETransport.raw) ? Global.RawNetworkAlias : network);
|
||||||
|
|
||||||
|
switch (network)
|
||||||
|
{
|
||||||
|
case nameof(ETransport.raw):
|
||||||
|
dicQuery.Add("headerType", transport.RawHeaderType.IsNotEmpty() ? transport.RawHeaderType : Global.None);
|
||||||
|
if (transport.Host.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("host", Utils.UrlEncode(item.RequestHost));
|
dicQuery.Add("host", UrlEncodeSafe(transport.Host));
|
||||||
|
}
|
||||||
|
if (transport.Path.IsNotEmpty())
|
||||||
|
{
|
||||||
|
dicQuery.Add("path", UrlEncodeSafe(transport.Path));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.kcp):
|
case nameof(ETransport.kcp):
|
||||||
dicQuery.Add("headerType", item.HeaderType.IsNotEmpty() ? item.HeaderType : Global.None);
|
dicQuery.Add("headerType", transport.KcpHeaderType.IsNotEmpty() ? transport.KcpHeaderType : Global.None);
|
||||||
if (item.Path.IsNotEmpty())
|
if (transport.KcpSeed.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("seed", Utils.UrlEncode(item.Path));
|
dicQuery.Add("seed", UrlEncodeSafe(transport.KcpSeed));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.ws):
|
case nameof(ETransport.ws):
|
||||||
case nameof(ETransport.httpupgrade):
|
case nameof(ETransport.httpupgrade):
|
||||||
if (item.RequestHost.IsNotEmpty())
|
if (transport.Host.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("host", Utils.UrlEncode(item.RequestHost));
|
dicQuery.Add("host", UrlEncodeSafe(transport.Host));
|
||||||
}
|
}
|
||||||
if (item.Path.IsNotEmpty())
|
if (transport.Path.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("path", Utils.UrlEncode(item.Path));
|
dicQuery.Add("path", UrlEncodeSafe(transport.Path));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.xhttp):
|
case nameof(ETransport.xhttp):
|
||||||
if (item.RequestHost.IsNotEmpty())
|
if (transport.Host.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("host", Utils.UrlEncode(item.RequestHost));
|
dicQuery.Add("host", UrlEncodeSafe(transport.Host));
|
||||||
}
|
}
|
||||||
if (item.Path.IsNotEmpty())
|
if (transport.Path.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("path", Utils.UrlEncode(item.Path));
|
dicQuery.Add("path", UrlEncodeSafe(transport.Path));
|
||||||
}
|
}
|
||||||
if (item.HeaderType.IsNotEmpty() && Global.XhttpMode.Contains(item.HeaderType))
|
if (transport.XhttpMode.IsNotEmpty() && Global.XhttpMode.Contains(transport.XhttpMode))
|
||||||
{
|
{
|
||||||
dicQuery.Add("mode", Utils.UrlEncode(item.HeaderType));
|
dicQuery.Add("mode", UrlEncodeSafe(transport.XhttpMode));
|
||||||
}
|
}
|
||||||
if (item.Extra.IsNotEmpty())
|
if (transport.XhttpExtra.IsNotEmpty())
|
||||||
{
|
{
|
||||||
var node = JsonUtils.ParseJson(item.Extra);
|
var node = JsonUtils.ParseJson(transport.XhttpExtra);
|
||||||
var extra = node != null
|
var extra = node != null
|
||||||
? JsonUtils.Serialize(node, new JsonSerializerOptions
|
? JsonUtils.Serialize(node, new JsonSerializerOptions
|
||||||
{
|
{
|
||||||
|
|
@ -142,38 +156,19 @@ public class BaseFmt
|
||||||
DefaultIgnoreCondition = JsonIgnoreCondition.Never,
|
DefaultIgnoreCondition = JsonIgnoreCondition.Never,
|
||||||
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping
|
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping
|
||||||
})
|
})
|
||||||
: item.Extra;
|
: transport.XhttpExtra;
|
||||||
dicQuery.Add("extra", Utils.UrlEncode(extra));
|
dicQuery.Add("extra", UrlEncodeSafe(extra));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.http):
|
|
||||||
case nameof(ETransport.h2):
|
|
||||||
dicQuery["type"] = nameof(ETransport.http);
|
|
||||||
if (item.RequestHost.IsNotEmpty())
|
|
||||||
{
|
|
||||||
dicQuery.Add("host", Utils.UrlEncode(item.RequestHost));
|
|
||||||
}
|
|
||||||
if (item.Path.IsNotEmpty())
|
|
||||||
{
|
|
||||||
dicQuery.Add("path", Utils.UrlEncode(item.Path));
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.quic):
|
|
||||||
dicQuery.Add("headerType", item.HeaderType.IsNotEmpty() ? item.HeaderType : Global.None);
|
|
||||||
dicQuery.Add("quicSecurity", Utils.UrlEncode(item.RequestHost));
|
|
||||||
dicQuery.Add("key", Utils.UrlEncode(item.Path));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.grpc):
|
case nameof(ETransport.grpc):
|
||||||
if (item.Path.IsNotEmpty())
|
if (transport.GrpcServiceName.IsNotEmpty())
|
||||||
{
|
{
|
||||||
dicQuery.Add("authority", Utils.UrlEncode(item.RequestHost));
|
dicQuery.Add("authority", UrlEncodeSafe(transport.GrpcAuthority));
|
||||||
dicQuery.Add("serviceName", Utils.UrlEncode(item.Path));
|
dicQuery.Add("serviceName", UrlEncodeSafe(transport.GrpcServiceName));
|
||||||
if (item.HeaderType is Global.GrpcGunMode or Global.GrpcMultiMode)
|
if (transport.GrpcMode is Global.GrpcGunMode or Global.GrpcMultiMode)
|
||||||
{
|
{
|
||||||
dicQuery.Add("mode", Utils.UrlEncode(item.HeaderType));
|
dicQuery.Add("mode", UrlEncodeSafe(transport.GrpcMode));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
@ -216,6 +211,8 @@ public class BaseFmt
|
||||||
|
|
||||||
protected static int ResolveUriQuery(NameValueCollection query, ref ProfileItem item)
|
protected static int ResolveUriQuery(NameValueCollection query, ref ProfileItem item)
|
||||||
{
|
{
|
||||||
|
var transport = item.GetTransportExtra();
|
||||||
|
|
||||||
item.StreamSecurity = GetQueryValue(query, "security");
|
item.StreamSecurity = GetQueryValue(query, "security");
|
||||||
item.Sni = GetQueryValue(query, "sni");
|
item.Sni = GetQueryValue(query, "sni");
|
||||||
item.Alpn = GetQueryDecoded(query, "alpn");
|
item.Alpn = GetQueryDecoded(query, "alpn");
|
||||||
|
|
@ -258,36 +255,54 @@ public class BaseFmt
|
||||||
item.AllowInsecure = string.Empty;
|
item.AllowInsecure = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
item.Network = GetQueryValue(query, "type", nameof(ETransport.tcp));
|
var net = GetQueryValue(query, "type", nameof(ETransport.raw));
|
||||||
|
if (net == Global.RawNetworkAlias)
|
||||||
|
{
|
||||||
|
net = nameof(ETransport.raw);
|
||||||
|
}
|
||||||
|
if (!Global.Networks.Contains(net))
|
||||||
|
{
|
||||||
|
net = nameof(ETransport.raw);
|
||||||
|
}
|
||||||
|
|
||||||
|
item.Network = net;
|
||||||
switch (item.Network)
|
switch (item.Network)
|
||||||
{
|
{
|
||||||
case nameof(ETransport.tcp):
|
case nameof(ETransport.raw):
|
||||||
item.HeaderType = GetQueryValue(query, "headerType", Global.None);
|
transport = transport with
|
||||||
item.RequestHost = GetQueryDecoded(query, "host");
|
{
|
||||||
|
RawHeaderType = GetQueryValue(query, "headerType", Global.None),
|
||||||
|
Host = GetQueryDecoded(query, "host"),
|
||||||
|
Path = GetQueryDecoded(query, "path"),
|
||||||
|
};
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.kcp):
|
case nameof(ETransport.kcp):
|
||||||
item.HeaderType = GetQueryValue(query, "headerType", Global.None);
|
var kcpSeed = GetQueryDecoded(query, "seed");
|
||||||
item.Path = GetQueryDecoded(query, "seed");
|
transport = transport with
|
||||||
|
{
|
||||||
|
KcpHeaderType = GetQueryValue(query, "headerType", Global.None),
|
||||||
|
KcpSeed = kcpSeed,
|
||||||
|
};
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.ws):
|
case nameof(ETransport.ws):
|
||||||
case nameof(ETransport.httpupgrade):
|
case nameof(ETransport.httpupgrade):
|
||||||
item.RequestHost = GetQueryDecoded(query, "host");
|
transport = transport with
|
||||||
item.Path = GetQueryDecoded(query, "path", "/");
|
{
|
||||||
|
Host = GetQueryDecoded(query, "host"),
|
||||||
|
Path = GetQueryDecoded(query, "path", "/"),
|
||||||
|
};
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.xhttp):
|
case nameof(ETransport.xhttp):
|
||||||
item.RequestHost = GetQueryDecoded(query, "host");
|
var xhttpExtra = GetQueryDecoded(query, "extra");
|
||||||
item.Path = GetQueryDecoded(query, "path", "/");
|
if (xhttpExtra.IsNotEmpty())
|
||||||
item.HeaderType = GetQueryDecoded(query, "mode");
|
|
||||||
var extraDecoded = GetQueryDecoded(query, "extra");
|
|
||||||
if (extraDecoded.IsNotEmpty())
|
|
||||||
{
|
{
|
||||||
var node = JsonUtils.ParseJson(extraDecoded);
|
var node = JsonUtils.ParseJson(xhttpExtra);
|
||||||
if (node != null)
|
if (node != null)
|
||||||
{
|
{
|
||||||
extraDecoded = JsonUtils.Serialize(node, new JsonSerializerOptions
|
xhttpExtra = JsonUtils.Serialize(node, new JsonSerializerOptions
|
||||||
{
|
{
|
||||||
WriteIndented = true,
|
WriteIndented = true,
|
||||||
DefaultIgnoreCondition = JsonIgnoreCondition.Never,
|
DefaultIgnoreCondition = JsonIgnoreCondition.Never,
|
||||||
|
|
@ -295,31 +310,32 @@ public class BaseFmt
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
item.Extra = extraDecoded;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.http):
|
transport = transport with
|
||||||
case nameof(ETransport.h2):
|
{
|
||||||
item.Network = nameof(ETransport.h2);
|
Host = GetQueryDecoded(query, "host"),
|
||||||
item.RequestHost = GetQueryDecoded(query, "host");
|
Path = GetQueryDecoded(query, "path", "/"),
|
||||||
item.Path = GetQueryDecoded(query, "path", "/");
|
XhttpMode = GetQueryDecoded(query, "mode"),
|
||||||
break;
|
XhttpExtra = xhttpExtra,
|
||||||
|
};
|
||||||
case nameof(ETransport.quic):
|
|
||||||
item.HeaderType = GetQueryValue(query, "headerType", Global.None);
|
|
||||||
item.RequestHost = GetQueryValue(query, "quicSecurity", Global.None);
|
|
||||||
item.Path = GetQueryDecoded(query, "key");
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.grpc):
|
case nameof(ETransport.grpc):
|
||||||
item.RequestHost = GetQueryDecoded(query, "authority");
|
transport = transport with
|
||||||
item.Path = GetQueryDecoded(query, "serviceName");
|
{
|
||||||
item.HeaderType = GetQueryDecoded(query, "mode", Global.GrpcGunMode);
|
GrpcAuthority = GetQueryDecoded(query, "authority"),
|
||||||
|
GrpcServiceName = GetQueryDecoded(query, "serviceName"),
|
||||||
|
GrpcMode = GetQueryDecoded(query, "mode", Global.GrpcGunMode),
|
||||||
|
};
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
item.Network = nameof(ETransport.raw);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
item.SetTransportExtra(transport);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,31 +42,28 @@ public class ShadowsocksFmt : BaseFmt
|
||||||
//url = Utile.Base64Encode(url);
|
//url = Utile.Base64Encode(url);
|
||||||
//new Sip002
|
//new Sip002
|
||||||
var pw = Utils.Base64Encode($"{item.GetProtocolExtra().SsMethod}:{item.Password}", true);
|
var pw = Utils.Base64Encode($"{item.GetProtocolExtra().SsMethod}:{item.Password}", true);
|
||||||
|
var transport = item.GetTransportExtra();
|
||||||
|
|
||||||
// plugin
|
// plugin
|
||||||
var plugin = string.Empty;
|
var plugin = string.Empty;
|
||||||
var pluginArgs = string.Empty;
|
var pluginArgs = string.Empty;
|
||||||
|
|
||||||
if (item.Network == nameof(ETransport.tcp) && item.HeaderType == Global.TcpHeaderHttp)
|
if (item.Network == nameof(ETransport.raw) && transport.RawHeaderType == Global.RawHeaderHttp)
|
||||||
{
|
{
|
||||||
plugin = "obfs-local";
|
plugin = "obfs-local";
|
||||||
pluginArgs = $"obfs=http;obfs-host={item.RequestHost};";
|
pluginArgs = $"obfs=http;obfs-host={transport.Host};";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (item.Network == nameof(ETransport.ws))
|
if (item.Network == nameof(ETransport.ws))
|
||||||
{
|
{
|
||||||
pluginArgs += "mode=websocket;";
|
pluginArgs += "mode=websocket;";
|
||||||
pluginArgs += $"host={item.RequestHost};";
|
pluginArgs += $"host={transport.Host};";
|
||||||
// https://github.com/shadowsocks/v2ray-plugin/blob/e9af1cdd2549d528deb20a4ab8d61c5fbe51f306/args.go#L172
|
// https://github.com/shadowsocks/v2ray-plugin/blob/e9af1cdd2549d528deb20a4ab8d61c5fbe51f306/args.go#L172
|
||||||
// Equal signs and commas [and backslashes] must be escaped with a backslash.
|
// Equal signs and commas [and backslashes] must be escaped with a backslash.
|
||||||
var path = item.Path.Replace("\\", "\\\\").Replace("=", "\\=").Replace(",", "\\,");
|
var path = (transport.Path ?? string.Empty).Replace("\\", "\\\\").Replace("=", "\\=").Replace(",", "\\,");
|
||||||
pluginArgs += $"path={path};";
|
pluginArgs += $"path={path};";
|
||||||
}
|
}
|
||||||
else if (item.Network == nameof(ETransport.quic))
|
|
||||||
{
|
|
||||||
pluginArgs += "mode=quic;";
|
|
||||||
}
|
|
||||||
if (item.StreamSecurity == Global.StreamSecurity)
|
if (item.StreamSecurity == Global.StreamSecurity)
|
||||||
{
|
{
|
||||||
pluginArgs += "tls;";
|
pluginArgs += "tls;";
|
||||||
|
|
@ -213,8 +210,11 @@ public class ShadowsocksFmt : BaseFmt
|
||||||
{
|
{
|
||||||
obfsHost = obfsHost.Replace("obfs-host=", "");
|
obfsHost = obfsHost.Replace("obfs-host=", "");
|
||||||
item.Network = Global.DefaultNetwork;
|
item.Network = Global.DefaultNetwork;
|
||||||
item.HeaderType = Global.TcpHeaderHttp;
|
item.SetTransportExtra(item.GetTransportExtra() with
|
||||||
item.RequestHost = obfsHost;
|
{
|
||||||
|
RawHeaderType = Global.RawHeaderHttp,
|
||||||
|
Host = obfsHost,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Parse v2ray-plugin
|
// Parse v2ray-plugin
|
||||||
|
|
@ -231,21 +231,20 @@ public class ShadowsocksFmt : BaseFmt
|
||||||
if (modeValue == "websocket")
|
if (modeValue == "websocket")
|
||||||
{
|
{
|
||||||
item.Network = nameof(ETransport.ws);
|
item.Network = nameof(ETransport.ws);
|
||||||
|
var t = item.GetTransportExtra();
|
||||||
if (!host.IsNullOrEmpty())
|
if (!host.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
item.RequestHost = host.Replace("host=", "");
|
var wsHost = host.Replace("host=", "");
|
||||||
item.Sni = item.RequestHost;
|
t = t with { Host = wsHost };
|
||||||
|
item.Sni = wsHost;
|
||||||
}
|
}
|
||||||
if (!path.IsNullOrEmpty())
|
if (!path.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
var pathValue = path.Replace("path=", "");
|
var pathValue = path.Replace("path=", "");
|
||||||
pathValue = pathValue.Replace("\\=", "=").Replace("\\,", ",").Replace("\\\\", "\\");
|
pathValue = pathValue.Replace("\\=", "=").Replace("\\,", ",").Replace("\\\\", "\\");
|
||||||
item.Path = pathValue;
|
t = t with { Path = pathValue };
|
||||||
}
|
}
|
||||||
}
|
item.SetTransportExtra(t);
|
||||||
else if (modeValue == "quic")
|
|
||||||
{
|
|
||||||
item.Network = nameof(ETransport.quic);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasTls)
|
if (hasTls)
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public class VmessFmt : BaseFmt
|
||||||
|
|
||||||
var vmessQRCode = new VmessQRCode
|
var vmessQRCode = new VmessQRCode
|
||||||
{
|
{
|
||||||
|
// vmess link keeps shared transport keys; map from new transport model on export.
|
||||||
v = 2,
|
v = 2,
|
||||||
ps = item.Remarks.TrimEx(),
|
ps = item.Remarks.TrimEx(),
|
||||||
add = item.Address,
|
add = item.Address,
|
||||||
|
|
@ -33,10 +34,34 @@ public class VmessFmt : BaseFmt
|
||||||
id = item.Password,
|
id = item.Password,
|
||||||
aid = int.TryParse(item.GetProtocolExtra()?.AlterId, out var result) ? result : 0,
|
aid = int.TryParse(item.GetProtocolExtra()?.AlterId, out var result) ? result : 0,
|
||||||
scy = item.GetProtocolExtra().VmessSecurity ?? "",
|
scy = item.GetProtocolExtra().VmessSecurity ?? "",
|
||||||
net = item.Network,
|
net = item.GetNetwork() == nameof(ETransport.raw) ? Global.RawNetworkAlias : item.Network,
|
||||||
type = item.HeaderType,
|
type = item.GetNetwork() switch
|
||||||
host = item.RequestHost,
|
{
|
||||||
path = item.Path,
|
nameof(ETransport.raw) => item.GetTransportExtra().RawHeaderType,
|
||||||
|
nameof(ETransport.kcp) => item.GetTransportExtra().KcpHeaderType,
|
||||||
|
nameof(ETransport.xhttp) => item.GetTransportExtra().XhttpMode,
|
||||||
|
nameof(ETransport.grpc) => item.GetTransportExtra().GrpcMode,
|
||||||
|
_ => Global.None,
|
||||||
|
},
|
||||||
|
host = item.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => item.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.ws) => item.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.httpupgrade) => item.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.xhttp) => item.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.grpc) => item.GetTransportExtra().GrpcAuthority,
|
||||||
|
_ => null,
|
||||||
|
},
|
||||||
|
path = item.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => item.GetTransportExtra().Path,
|
||||||
|
nameof(ETransport.kcp) => item.GetTransportExtra().KcpSeed,
|
||||||
|
nameof(ETransport.ws) => item.GetTransportExtra().Path,
|
||||||
|
nameof(ETransport.httpupgrade) => item.GetTransportExtra().Path,
|
||||||
|
nameof(ETransport.xhttp) => item.GetTransportExtra().Path,
|
||||||
|
nameof(ETransport.grpc) => item.GetTransportExtra().GrpcServiceName,
|
||||||
|
_ => null,
|
||||||
|
},
|
||||||
tls = item.StreamSecurity,
|
tls = item.StreamSecurity,
|
||||||
sni = item.Sni,
|
sni = item.Sni,
|
||||||
alpn = item.Alpn,
|
alpn = item.Alpn,
|
||||||
|
|
@ -70,7 +95,10 @@ public class VmessFmt : BaseFmt
|
||||||
}
|
}
|
||||||
|
|
||||||
item.Network = Global.DefaultNetwork;
|
item.Network = Global.DefaultNetwork;
|
||||||
item.HeaderType = Global.None;
|
var transport = new TransportExtra
|
||||||
|
{
|
||||||
|
RawHeaderType = Global.None,
|
||||||
|
};
|
||||||
|
|
||||||
//item.ConfigVersion = vmessQRCode.v;
|
//item.ConfigVersion = vmessQRCode.v;
|
||||||
item.Remarks = Utils.ToString(vmessQRCode.ps);
|
item.Remarks = Utils.ToString(vmessQRCode.ps);
|
||||||
|
|
@ -84,15 +112,30 @@ public class VmessFmt : BaseFmt
|
||||||
});
|
});
|
||||||
if (vmessQRCode.net.IsNotEmpty())
|
if (vmessQRCode.net.IsNotEmpty())
|
||||||
{
|
{
|
||||||
item.Network = vmessQRCode.net;
|
item.Network = vmessQRCode.net == Global.RawNetworkAlias ? nameof(ETransport.raw) : vmessQRCode.net;
|
||||||
}
|
}
|
||||||
if (vmessQRCode.type.IsNotEmpty())
|
if (vmessQRCode.type.IsNotEmpty())
|
||||||
{
|
{
|
||||||
item.HeaderType = vmessQRCode.type;
|
transport = item.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => transport with { RawHeaderType = vmessQRCode.type },
|
||||||
|
nameof(ETransport.kcp) => transport with { KcpHeaderType = vmessQRCode.type },
|
||||||
|
nameof(ETransport.xhttp) => transport with { XhttpMode = vmessQRCode.type },
|
||||||
|
nameof(ETransport.grpc) => transport with { GrpcMode = vmessQRCode.type },
|
||||||
|
_ => transport,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
transport = item.GetNetwork() switch
|
||||||
item.RequestHost = Utils.ToString(vmessQRCode.host);
|
{
|
||||||
item.Path = Utils.ToString(vmessQRCode.path);
|
nameof(ETransport.raw) => transport with { Host = Utils.ToString(vmessQRCode.host), Path = Utils.ToString(vmessQRCode.path) },
|
||||||
|
nameof(ETransport.kcp) => transport with { KcpSeed = Utils.ToString(vmessQRCode.path) },
|
||||||
|
nameof(ETransport.ws) => transport with { Host = Utils.ToString(vmessQRCode.host), Path = Utils.ToString(vmessQRCode.path) },
|
||||||
|
nameof(ETransport.httpupgrade) => transport with { Host = Utils.ToString(vmessQRCode.host), Path = Utils.ToString(vmessQRCode.path) },
|
||||||
|
nameof(ETransport.xhttp) => transport with { Host = Utils.ToString(vmessQRCode.host), Path = Utils.ToString(vmessQRCode.path) },
|
||||||
|
nameof(ETransport.grpc) => transport with { GrpcAuthority = Utils.ToString(vmessQRCode.host), GrpcServiceName = Utils.ToString(vmessQRCode.path) },
|
||||||
|
_ => transport,
|
||||||
|
};
|
||||||
|
item.SetTransportExtra(transport);
|
||||||
item.StreamSecurity = Utils.ToString(vmessQRCode.tls);
|
item.StreamSecurity = Utils.ToString(vmessQRCode.tls);
|
||||||
item.Sni = Utils.ToString(vmessQRCode.sni);
|
item.Sni = Utils.ToString(vmessQRCode.sni);
|
||||||
item.Alpn = Utils.ToString(vmessQRCode.alpn);
|
item.Alpn = Utils.ToString(vmessQRCode.alpn);
|
||||||
|
|
@ -122,7 +165,7 @@ public class VmessFmt : BaseFmt
|
||||||
|
|
||||||
item.SetProtocolExtra(new ProtocolExtraItem
|
item.SetProtocolExtra(new ProtocolExtraItem
|
||||||
{
|
{
|
||||||
VmessSecurity = "auto",
|
VmessSecurity = Global.DefaultSecurity,
|
||||||
});
|
});
|
||||||
|
|
||||||
var query = Utils.ParseQueryString(url.Query);
|
var query = Utils.ParseQueryString(url.Query);
|
||||||
|
|
|
||||||
|
|
@ -308,8 +308,15 @@ public sealed class AppManager
|
||||||
#pragma warning disable CS0618
|
#pragma warning disable CS0618
|
||||||
public async Task MigrateProfileExtra()
|
public async Task MigrateProfileExtra()
|
||||||
{
|
{
|
||||||
await MigrateProfileExtraGroup();
|
await MigrateProfileExtraGroupV2ToV3();
|
||||||
|
|
||||||
|
await MigrateProfileExtraV2ToV3();
|
||||||
|
|
||||||
|
await MigrateProfileTransportV3ToV4();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task MigrateProfileExtraV2ToV3()
|
||||||
|
{
|
||||||
const int pageSize = 100;
|
const int pageSize = 100;
|
||||||
var offset = 0;
|
var offset = 0;
|
||||||
|
|
||||||
|
|
@ -325,7 +332,7 @@ public sealed class AppManager
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
var batchSuccessCount = await MigrateProfileExtraSub(batch);
|
var batchSuccessCount = await MigrateProfileExtraV2ToV3Sub(batch);
|
||||||
|
|
||||||
// Only increment offset by the number of failed items that remain in the result set
|
// Only increment offset by the number of failed items that remain in the result set
|
||||||
// Successfully updated items are automatically excluded from future queries due to ConfigVersion = 3
|
// Successfully updated items are automatically excluded from future queries due to ConfigVersion = 3
|
||||||
|
|
@ -335,7 +342,121 @@ public sealed class AppManager
|
||||||
//await ProfileGroupItemManager.Instance.ClearAll();
|
//await ProfileGroupItemManager.Instance.ClearAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<int> MigrateProfileExtraSub(List<ProfileItem> batch)
|
private async Task MigrateProfileTransportV3ToV4()
|
||||||
|
{
|
||||||
|
const int pageSize = 100;
|
||||||
|
var offset = 0;
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
var sql = $"SELECT * FROM ProfileItem WHERE ConfigVersion = 3 LIMIT {pageSize} OFFSET {offset}";
|
||||||
|
var batch = await SQLiteHelper.Instance.QueryAsync<ProfileItem>(sql);
|
||||||
|
if (batch is null || batch.Count == 0)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
var updateProfileItems = new List<ProfileItem>();
|
||||||
|
foreach (var item in batch)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (item.Network == Global.RawNetworkAlias)
|
||||||
|
{
|
||||||
|
item.Network = nameof(ETransport.raw);
|
||||||
|
}
|
||||||
|
var extra = item.GetProtocolExtra();
|
||||||
|
var transport = extra.Transport ?? new TransportExtra();
|
||||||
|
var network = item.GetNetwork();
|
||||||
|
|
||||||
|
switch (network)
|
||||||
|
{
|
||||||
|
case nameof(ETransport.raw):
|
||||||
|
transport = transport with
|
||||||
|
{
|
||||||
|
RawHeaderType = item.HeaderType.NullIfEmpty(),
|
||||||
|
Host = item.RequestHost.NullIfEmpty(),
|
||||||
|
Path = item.Path.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.ws):
|
||||||
|
case nameof(ETransport.httpupgrade):
|
||||||
|
transport = transport with
|
||||||
|
{
|
||||||
|
Host = item.RequestHost.NullIfEmpty(),
|
||||||
|
Path = item.Path.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.xhttp):
|
||||||
|
transport = transport with
|
||||||
|
{
|
||||||
|
Host = item.RequestHost.NullIfEmpty(),
|
||||||
|
Path = item.Path.NullIfEmpty(),
|
||||||
|
XhttpMode = item.HeaderType.NullIfEmpty(),
|
||||||
|
XhttpExtra = item.Extra.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.grpc):
|
||||||
|
transport = transport with
|
||||||
|
{
|
||||||
|
GrpcAuthority = item.RequestHost.NullIfEmpty(),
|
||||||
|
GrpcServiceName = item.Path.NullIfEmpty(),
|
||||||
|
GrpcMode = item.HeaderType.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.kcp):
|
||||||
|
transport = transport with
|
||||||
|
{
|
||||||
|
KcpHeaderType = item.HeaderType.NullIfEmpty(),
|
||||||
|
KcpSeed = item.Path.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
item.Network = Global.DefaultNetwork;
|
||||||
|
transport = transport with
|
||||||
|
{
|
||||||
|
RawHeaderType = item.HeaderType.NullIfEmpty(),
|
||||||
|
Host = item.RequestHost.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
item.SetProtocolExtra(extra with { Transport = transport });
|
||||||
|
item.ConfigVersion = 4;
|
||||||
|
updateProfileItems.Add(item);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logging.SaveLog($"MigrateProfileTransportV3ToV4 Error: {ex}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (updateProfileItems.Count > 0)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var count = await SQLiteHelper.Instance.UpdateAllAsync(updateProfileItems);
|
||||||
|
offset += batch.Count - count;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logging.SaveLog($"MigrateProfileTransportV3ToV4 update error: {ex}");
|
||||||
|
offset += batch.Count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
offset += batch.Count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<int> MigrateProfileExtraV2ToV3Sub(List<ProfileItem> batch)
|
||||||
{
|
{
|
||||||
var updateProfileItems = new List<ProfileItem>();
|
var updateProfileItems = new List<ProfileItem>();
|
||||||
|
|
||||||
|
|
@ -433,7 +554,7 @@ public sealed class AppManager
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<bool> MigrateProfileExtraGroup()
|
private async Task<bool> MigrateProfileExtraGroupV2ToV3()
|
||||||
{
|
{
|
||||||
var list = await SQLiteHelper.Instance.TableAsync<ProfileGroupItem>().ToListAsync();
|
var list = await SQLiteHelper.Instance.TableAsync<ProfileGroupItem>().ToListAsync();
|
||||||
var groupItems = new ConcurrentDictionary<string, ProfileGroupItem>(list.Where(t => !string.IsNullOrEmpty(t.IndexId)).ToDictionary(t => t.IndexId!));
|
var groupItems = new ConcurrentDictionary<string, ProfileGroupItem>(list.Where(t => !string.IsNullOrEmpty(t.IndexId)).ToDictionary(t => t.IndexId!));
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,9 @@ public class CoreManager
|
||||||
|
|
||||||
await CoreStart(mainContext);
|
await CoreStart(mainContext);
|
||||||
await CoreStartPreService(preContext);
|
await CoreStartPreService(preContext);
|
||||||
|
|
||||||
|
AppManager.Instance.RunningCoreType = preContext?.RunCoreType ?? mainContext.RunCoreType;
|
||||||
|
|
||||||
if (_processService != null)
|
if (_processService != null)
|
||||||
{
|
{
|
||||||
await UpdateFunc(true, $"{node.GetSummary()}");
|
await UpdateFunc(true, $"{node.GetSummary()}");
|
||||||
|
|
@ -172,7 +175,7 @@ public class CoreManager
|
||||||
private async Task CoreStart(CoreConfigContext context)
|
private async Task CoreStart(CoreConfigContext context)
|
||||||
{
|
{
|
||||||
var node = context.Node;
|
var node = context.Node;
|
||||||
var coreType = AppManager.Instance.RunningCoreType = AppManager.Instance.GetCoreType(node, node.ConfigType);
|
var coreType = AppManager.Instance.GetCoreType(node, node.ConfigType);
|
||||||
var coreInfo = CoreInfoManager.Instance.GetCoreInfo(coreType);
|
var coreInfo = CoreInfoManager.Instance.GetCoreInfo(coreType);
|
||||||
|
|
||||||
var displayLog = node.ConfigType != EConfigType.Custom || node.DisplayLog;
|
var displayLog = node.ConfigType != EConfigType.Custom || node.DisplayLog;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ public class ProfileItem
|
||||||
{
|
{
|
||||||
IndexId = string.Empty;
|
IndexId = string.Empty;
|
||||||
ConfigType = EConfigType.VMess;
|
ConfigType = EConfigType.VMess;
|
||||||
ConfigVersion = 3;
|
ConfigVersion = 4;
|
||||||
Subid = string.Empty;
|
Subid = string.Empty;
|
||||||
Address = string.Empty;
|
Address = string.Empty;
|
||||||
Port = 0;
|
Port = 0;
|
||||||
|
|
@ -17,9 +17,6 @@ public class ProfileItem
|
||||||
Username = string.Empty;
|
Username = string.Empty;
|
||||||
Network = string.Empty;
|
Network = string.Empty;
|
||||||
Remarks = string.Empty;
|
Remarks = string.Empty;
|
||||||
HeaderType = string.Empty;
|
|
||||||
RequestHost = string.Empty;
|
|
||||||
Path = string.Empty;
|
|
||||||
StreamSecurity = string.Empty;
|
StreamSecurity = string.Empty;
|
||||||
AllowInsecure = string.Empty;
|
AllowInsecure = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
@ -142,6 +139,16 @@ public class ProfileItem
|
||||||
return _protocolExtraCache ??= JsonUtils.Deserialize<ProtocolExtraItem>(ProtoExtra) ?? new ProtocolExtraItem();
|
return _protocolExtraCache ??= JsonUtils.Deserialize<ProtocolExtraItem>(ProtoExtra) ?? new ProtocolExtraItem();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TransportExtra GetTransportExtra()
|
||||||
|
{
|
||||||
|
return GetProtocolExtra().Transport ?? new TransportExtra();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetTransportExtra(TransportExtra transportExtra)
|
||||||
|
{
|
||||||
|
SetProtocolExtra(GetProtocolExtra() with { Transport = transportExtra });
|
||||||
|
}
|
||||||
|
|
||||||
#endregion function
|
#endregion function
|
||||||
|
|
||||||
[PrimaryKey]
|
[PrimaryKey]
|
||||||
|
|
@ -160,8 +167,11 @@ public class ProfileItem
|
||||||
public string Password { get; set; }
|
public string Password { get; set; }
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
public string Network { get; set; }
|
public string Network { get; set; }
|
||||||
|
[Obsolete("Use TransportExtra.RawHeaderType/XhttpMode/GrpcMode/KcpHeaderType instead.")]
|
||||||
public string HeaderType { get; set; }
|
public string HeaderType { get; set; }
|
||||||
|
[Obsolete("Use TransportExtra.Host/GrpcAuthority instead.")]
|
||||||
public string RequestHost { get; set; }
|
public string RequestHost { get; set; }
|
||||||
|
[Obsolete("Use TransportExtra.Path/GrpcServiceName/KcpSeed instead.")]
|
||||||
public string Path { get; set; }
|
public string Path { get; set; }
|
||||||
public string StreamSecurity { get; set; }
|
public string StreamSecurity { get; set; }
|
||||||
public string AllowInsecure { get; set; }
|
public string AllowInsecure { get; set; }
|
||||||
|
|
@ -172,6 +182,7 @@ public class ProfileItem
|
||||||
public string ShortId { get; set; }
|
public string ShortId { get; set; }
|
||||||
public string SpiderX { get; set; }
|
public string SpiderX { get; set; }
|
||||||
public string Mldsa65Verify { get; set; }
|
public string Mldsa65Verify { get; set; }
|
||||||
|
[Obsolete("Use TransportExtra.XhttpExtra instead.")]
|
||||||
public string Extra { get; set; }
|
public string Extra { get; set; }
|
||||||
public bool? MuxEnabled { get; set; }
|
public bool? MuxEnabled { get; set; }
|
||||||
public string Cert { get; set; }
|
public string Cert { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@ namespace ServiceLib.Models;
|
||||||
|
|
||||||
public record ProtocolExtraItem
|
public record ProtocolExtraItem
|
||||||
{
|
{
|
||||||
|
public TransportExtra? Transport { get; init; }
|
||||||
|
|
||||||
public bool? Uot { get; init; }
|
public bool? Uot { get; init; }
|
||||||
public string? CongestionControl { get; init; }
|
public string? CongestionControl { get; init; }
|
||||||
|
|
||||||
|
|
|
||||||
18
v2rayN/ServiceLib/Models/TransportExtra.cs
Normal file
18
v2rayN/ServiceLib/Models/TransportExtra.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
namespace ServiceLib.Models;
|
||||||
|
|
||||||
|
public record TransportExtra
|
||||||
|
{
|
||||||
|
public string? RawHeaderType { get; init; }
|
||||||
|
|
||||||
|
public string? Host { get; init; }
|
||||||
|
public string? Path { get; init; }
|
||||||
|
public string? XhttpMode { get; init; }
|
||||||
|
public string? XhttpExtra { get; init; }
|
||||||
|
|
||||||
|
public string? GrpcAuthority { get; init; }
|
||||||
|
public string? GrpcServiceName { get; init; }
|
||||||
|
public string? GrpcMode { get; init; }
|
||||||
|
|
||||||
|
public string? KcpHeaderType { get; init; }
|
||||||
|
public string? KcpSeed { get; init; }
|
||||||
|
}
|
||||||
|
|
@ -317,7 +317,7 @@ public class StreamSettings4Ray
|
||||||
|
|
||||||
public TlsSettings4Ray? tlsSettings { get; set; }
|
public TlsSettings4Ray? tlsSettings { get; set; }
|
||||||
|
|
||||||
public TcpSettings4Ray? tcpSettings { get; set; }
|
public RawSettings4Ray? rawSettings { get; set; }
|
||||||
|
|
||||||
public KcpSettings4Ray? kcpSettings { get; set; }
|
public KcpSettings4Ray? kcpSettings { get; set; }
|
||||||
|
|
||||||
|
|
@ -371,7 +371,7 @@ public class CertificateSettings4Ray
|
||||||
public string? usage { get; set; }
|
public string? usage { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class TcpSettings4Ray
|
public class RawSettings4Ray
|
||||||
{
|
{
|
||||||
public Header4Ray header { get; set; }
|
public Header4Ray header { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
65
v2rayN/ServiceLib/Resx/ResUI.Designer.cs
generated
65
v2rayN/ServiceLib/Resx/ResUI.Designer.cs
generated
|
|
@ -2661,6 +2661,15 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 查找类似 Camouflage domain 的本地化字符串。
|
||||||
|
/// </summary>
|
||||||
|
public static string TbCamouflageDomain {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("TbCamouflageDomain", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 Cancel 的本地化字符串。
|
/// 查找类似 Cancel 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -3078,6 +3087,15 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 查找类似 Host 的本地化字符串。
|
||||||
|
/// </summary>
|
||||||
|
public static string TbHost {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("TbHost", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 ICMP routing policy 的本地化字符串。
|
/// 查找类似 ICMP routing policy 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -3384,15 +3402,6 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 查找类似 Camouflage domain(host) 的本地化字符串。
|
|
||||||
/// </summary>
|
|
||||||
public static string TbRequestHost {
|
|
||||||
get {
|
|
||||||
return ResourceManager.GetString("TbRequestHost", resourceCulture);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 Reserved (2,3,4) 的本地化字符串。
|
/// 查找类似 Reserved (2,3,4) 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -3763,7 +3772,7 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 This parameter is valid only for tcp/http and ws 的本地化字符串。
|
/// 查找类似 This parameter is valid only for raw/http and ws 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TbSettingsDefUserAgentTips {
|
public static string TbSettingsDefUserAgentTips {
|
||||||
get {
|
get {
|
||||||
|
|
@ -4627,7 +4636,7 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *Default value tcp 的本地化字符串。
|
/// 查找类似 *Default value raw 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TipNetwork {
|
public static string TipNetwork {
|
||||||
get {
|
get {
|
||||||
|
|
@ -4654,47 +4663,47 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *tcp camouflage type 的本地化字符串。
|
/// 查找类似 raw camouflage type 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportHeaderTypeTip1 {
|
public static string TransportHeaderType1 {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("TransportHeaderTypeTip1", resourceCulture);
|
return ResourceManager.GetString("TransportHeaderType1", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *kcp camouflage type 的本地化字符串。
|
/// 查找类似 kcp camouflage type 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportHeaderTypeTip2 {
|
public static string TransportHeaderType2 {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("TransportHeaderTypeTip2", resourceCulture);
|
return ResourceManager.GetString("TransportHeaderType2", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *QUIC camouflage type 的本地化字符串。
|
/// 查找类似 QUIC camouflage type 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportHeaderTypeTip3 {
|
public static string TransportHeaderType3 {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("TransportHeaderTypeTip3", resourceCulture);
|
return ResourceManager.GetString("TransportHeaderType3", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *grpc mode 的本地化字符串。
|
/// 查找类似 gRPC mode 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportHeaderTypeTip4 {
|
public static string TransportHeaderType4 {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("TransportHeaderTypeTip4", resourceCulture);
|
return ResourceManager.GetString("TransportHeaderType4", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *xhttp mode 的本地化字符串。
|
/// 查找类似 xhttp mode 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportHeaderTypeTip5 {
|
public static string TransportHeaderType5 {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("TransportHeaderTypeTip5", resourceCulture);
|
return ResourceManager.GetString("TransportHeaderType5", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -4726,7 +4735,7 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *grpc service name 的本地化字符串。
|
/// 查找类似 gRPC service name 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportPathTip4 {
|
public static string TransportPathTip4 {
|
||||||
get {
|
get {
|
||||||
|
|
@ -4780,7 +4789,7 @@ namespace ServiceLib.Resx {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 *grpc Authority 的本地化字符串。
|
/// 查找类似 gRPC Authority 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TransportRequestHostTip5 {
|
public static string TransportRequestHostTip5 {
|
||||||
get {
|
get {
|
||||||
|
|
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*QUIC key/Kcp seed</value>
|
<value>*QUIC key/Kcp seed</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>*grpc serviceName</value>
|
<value>gRPC serviceName</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*هاست http جدا شده با کاما (،)</value>
|
<value>*هاست http جدا شده با کاما (،)</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>*QUIC securty</value>
|
<value>*QUIC securty</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>*tcp camouflage type</value>
|
<value>raw camouflage type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>*kcp camouflage type</value>
|
<value>kcp camouflage type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>*QUIC camouflage type</value>
|
<value>QUIC camouflage type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>*حالت grpc</value>
|
<value>حالت grpc</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>نام مستعار (ملاحظات)</value>
|
<value>نام مستعار (ملاحظات)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>Camouflage domain(host)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>روش رمزگذاری (امنیتی)</value>
|
<value>روش رمزگذاری (امنیتی)</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*مقدار پیش فرض tcp</value>
|
<value>*مقدار پیش فرض raw</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>نوع هسته</value>
|
<value>نوع هسته</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>User-Agent</value>
|
<value>User-Agent</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>این پارامتر فقط برای tcp/http و ws معتبر است</value>
|
<value>این پارامتر فقط برای raw/http و ws معتبر است</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>FontFamily (نیاز به راه اندازی مجدد)</value>
|
<value>FontFamily (نیاز به راه اندازی مجدد)</value>
|
||||||
|
|
@ -1102,7 +1099,7 @@
|
||||||
<value>پایان تست...</value>
|
<value>پایان تست...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>*grpc Authority</value>
|
<value>RPC Authority</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>افزودن سرور [HTTP]</value>
|
<value>افزودن سرور [HTTP]</value>
|
||||||
|
|
@ -1320,8 +1317,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>The password will be validated via the command line. If a validation error causes the application to malfunction, please restart the application. The password will not be stored and must be entered again after each restart.</value>
|
<value>The password will be validated via the command line. If a validation error causes the application to malfunction, please restart the application. The password will not be stored and must be entered again after each restart.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*حالت xhttp</value>
|
<value>حالت xhttp</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>جیسون خام XHTTP Extra, فرمت: { XHTTPObject }</value>
|
<value>جیسون خام XHTTP Extra, فرمت: { XHTTPObject }</value>
|
||||||
|
|
@ -1698,4 +1695,10 @@ The "Get Certificate" action may fail if a self-signed certificate is used or if
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>Legacy TUN Protect</value>
|
<value>Legacy TUN Protect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>Camouflage domain</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*clé de chiffrement QUIC</value>
|
<value>*clé de chiffrement QUIC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>*nom de service gRPC</value>
|
<value>nom de service gRPC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*hôte http, séparés par des virgules (,)</value>
|
<value>*hôte http, séparés par des virgules (,)</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>*méthode de chiffrement QUIC</value>
|
<value>*méthode de chiffrement QUIC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>*type de camouflage tcp</value>
|
<value>type de camouflage raw</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>*type de camouflage kcp</value>
|
<value>type de camouflage kcp</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>*type de camouflage QUIC</value>
|
<value>type de camouflage QUIC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>*mode gRPC</value>
|
<value>mode gRPC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>Alias (remarks)</value>
|
<value>Alias (remarks)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>Domaine de camouflage (host)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>Méthode de chiffrement (security)</value>
|
<value>Méthode de chiffrement (security)</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>Sécurité couche transport (TLS)</value>
|
<value>Sécurité couche transport (TLS)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*tcp par défaut ; un mauvais choix bloque la connexion</value>
|
<value>*raw par défaut ; un mauvais choix bloque la connexion</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>Type de Core</value>
|
<value>Type de Core</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>Agent utilisateur (User-Agent)</value>
|
<value>Agent utilisateur (User-Agent)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>Valable uniquement pour les protocoles tcp/http et ws</value>
|
<value>Valable uniquement pour les protocoles raw/http et ws</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>Police actuelle (redémarrage requis)</value>
|
<value>Police actuelle (redémarrage requis)</value>
|
||||||
|
|
@ -1099,7 +1096,7 @@
|
||||||
<value>Arrêt du test en cours...</value>
|
<value>Arrêt du test en cours...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>*Autorité gRPC</value>
|
<value>Autorité gRPC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>Ajouter [HTTP]</value>
|
<value>Ajouter [HTTP]</value>
|
||||||
|
|
@ -1317,8 +1314,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>Le mot de passe sera vérifié en ligne de commande. En cas d’échec ou de dysfonctionnement, redémarrez l’application. Il n’est pas stocké et doit être saisi à chaque redémarrage.</value>
|
<value>Le mot de passe sera vérifié en ligne de commande. En cas d’échec ou de dysfonctionnement, redémarrez l’application. Il n’est pas stocké et doit être saisi à chaque redémarrage.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*Mode XHTTP</value>
|
<value>Mode XHTTP</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>JSON brut XHTTP Extra, format : { XHTTPObject }</value>
|
<value>JSON brut XHTTP Extra, format : { XHTTPObject }</value>
|
||||||
|
|
@ -1695,4 +1692,10 @@ The "Get Certificate" action may fail if a self-signed certificate is used or if
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>Legacy TUN Protect</value>
|
<value>Legacy TUN Protect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>Domaine de camouflage</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*QUIC kulcs/KCP seed</value>
|
<value>*QUIC kulcs/KCP seed</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>*grpc szolgáltatásnév</value>
|
<value>gRPC szolgáltatásnév</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*http host vesszővel elválasztva (,)</value>
|
<value>*http host vesszővel elválasztva (,)</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>*QUIC biztonság</value>
|
<value>*QUIC biztonság</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>*tcp álcázási típus</value>
|
<value>raw álcázási típus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>*kcp álcázási típus</value>
|
<value>kcp álcázási típus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>*QUIC álcázási típus</value>
|
<value>QUIC álcázási típus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>*grpc mód</value>
|
<value>gRPC mód</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>Alias (megjegyzések)</value>
|
<value>Alias (megjegyzések)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>Álcázási tartomány(host)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>Titkosítási módszer (biztonság)</value>
|
<value>Titkosítási módszer (biztonság)</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*Alapértelmezett érték tcp</value>
|
<value>*Alapértelmezett érték raw</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>Core Típus</value>
|
<value>Core Típus</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>User-Agent</value>
|
<value>User-Agent</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>Ez a paraméter csak tcp/http és ws esetén érvényes</value>
|
<value>Ez a paraméter csak raw/http és ws esetén érvényes</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>Betűtípus (újraindítást igényel)</value>
|
<value>Betűtípus (újraindítást igényel)</value>
|
||||||
|
|
@ -1102,7 +1099,7 @@
|
||||||
<value>Teszt megszakítása...</value>
|
<value>Teszt megszakítása...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>*grpc Authority</value>
|
<value>gRPC Authority</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>HTTP konfiguráció hozzáadása</value>
|
<value>HTTP konfiguráció hozzáadása</value>
|
||||||
|
|
@ -1320,8 +1317,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>A jelszót a parancssoron keresztül ellenőrizzük. Ha egy érvényesítési hiba miatt az alkalmazás hibásan működik, indítsa újra az alkalmazást. A jelszó nem kerül tárolásra, és minden újraindítás után újra meg kell adni.</value>
|
<value>A jelszót a parancssoron keresztül ellenőrizzük. Ha egy érvényesítési hiba miatt az alkalmazás hibásan működik, indítsa újra az alkalmazást. A jelszó nem kerül tárolásra, és minden újraindítás után újra meg kell adni.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*xhttp mód</value>
|
<value>xhttp mód</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>XHTTP Extra nyers JSON, formátum: { XHTTP Objektum }</value>
|
<value>XHTTP Extra nyers JSON, formátum: { XHTTP Objektum }</value>
|
||||||
|
|
@ -1698,4 +1695,10 @@ The "Get Certificate" action may fail if a self-signed certificate is used or if
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>Legacy TUN Protect</value>
|
<value>Legacy TUN Protect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>Álcázási tartomány</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*QUIC key/KCP seed</value>
|
<value>*QUIC key/KCP seed</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>*grpc service name</value>
|
<value>gRPC service name</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*http host separated by commas (,)</value>
|
<value>*http host separated by commas (,)</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>*QUIC security</value>
|
<value>*QUIC security</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>*tcp camouflage type</value>
|
<value>raw camouflage type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>*kcp camouflage type</value>
|
<value>kcp camouflage type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>*QUIC camouflage type</value>
|
<value>QUIC camouflage type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>*grpc mode</value>
|
<value>gRPC mode</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>Alias (remarks)</value>
|
<value>Alias (remarks)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>Camouflage domain(host)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>Encryption method (security)</value>
|
<value>Encryption method (security)</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*Default value tcp</value>
|
<value>*Default value raw</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>Core Type</value>
|
<value>Core Type</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>User-Agent</value>
|
<value>User-Agent</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>This parameter is valid only for tcp/http and ws</value>
|
<value>This parameter is valid only for raw/http and ws</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>Font family (requires restart)</value>
|
<value>Font family (requires restart)</value>
|
||||||
|
|
@ -1102,7 +1099,7 @@
|
||||||
<value>Test terminating...</value>
|
<value>Test terminating...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>*grpc Authority</value>
|
<value>gRPC Authority</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>Add [HTTP]</value>
|
<value>Add [HTTP]</value>
|
||||||
|
|
@ -1320,8 +1317,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>The password will be validated via the command line. If a validation error causes the application to malfunction, please restart the application. The password will not be stored and must be entered again after each restart.</value>
|
<value>The password will be validated via the command line. If a validation error causes the application to malfunction, please restart the application. The password will not be stored and must be entered again after each restart.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*xhttp mode</value>
|
<value>xhttp mode</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>XHTTP Extra raw JSON, format: { XHTTP Object }</value>
|
<value>XHTTP Extra raw JSON, format: { XHTTP Object }</value>
|
||||||
|
|
@ -1698,4 +1695,10 @@ The "Get Certificate" action may fail if a self-signed certificate is used or if
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>Legacy TUN Protect</value>
|
<value>Legacy TUN Protect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>Camouflage domain</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*QUIC-ключ / KCP-seed</value>
|
<value>*QUIC-ключ / KCP-seed</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>Имя сервиса *gRPC</value>
|
<value>Имя сервиса gRPC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*http-хосты, разделённые запятыми (,)</value>
|
<value>*http-хосты, разделённые запятыми (,)</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>Безопасность *QUIC</value>
|
<value>Безопасность *QUIC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>Тип *TCP-камуфляжа</value>
|
<value>Тип raw-камуфляжа</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>Тип *KCP-камуфляжа</value>
|
<value>Тип KCP-камуфляжа</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>Тип *QUIC-камуфляжа</value>
|
<value>Тип QUIC-камуфляжа</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>Режим *gRPC</value>
|
<value>Режим gRPC</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>Примечание</value>
|
<value>Примечание</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>Маскирующий домен (хост)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>Метод шифрования</value>
|
<value>Метод шифрования</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*По-умолчанию TCP</value>
|
<value>*По-умолчанию raw</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>Ядро</value>
|
<value>Ядро</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>User-Agent</value>
|
<value>User-Agent</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>Параметр действует только для TCP/HTTP и WebSocket (WS)</value>
|
<value>Параметр действует только для raw/HTTP и WebSocket (WS)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>Шрифт (требуется перезагрузка)</value>
|
<value>Шрифт (требуется перезагрузка)</value>
|
||||||
|
|
@ -1102,7 +1099,7 @@
|
||||||
<value>Отмена тестирования...</value>
|
<value>Отмена тестирования...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>* gRPC Authority (HTTP/2 псевдозаголовок :authority)</value>
|
<value>gRPC Authority (HTTP/2 псевдозаголовок :authority)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>Добавить сервер [HTTP]</value>
|
<value>Добавить сервер [HTTP]</value>
|
||||||
|
|
@ -1320,8 +1317,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>Пароль sudo будет проверен в терминале. Если из-за ошибки проверки приложение начнёт работать некорректно, перезапустите его. Пароль не сохраняется — его нужно вводить после каждого перезапуска.</value>
|
<value>Пароль sudo будет проверен в терминале. Если из-за ошибки проверки приложение начнёт работать некорректно, перезапустите его. Пароль не сохраняется — его нужно вводить после каждого перезапуска.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*XHTTP-режим</value>
|
<value>XHTTP-режим</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>Дополнительный „сырой“ JSON для XHTTP, формат: { XHTTP Object }</value>
|
<value>Дополнительный „сырой“ JSON для XHTTP, формат: { XHTTP Object }</value>
|
||||||
|
|
@ -1698,4 +1695,10 @@
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>Legacy TUN Protect</value>
|
<value>Legacy TUN Protect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>Маскирующий домен</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*QUIC 加密密钥</value>
|
<value>*QUIC 加密密钥</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>*grpc serviceName</value>
|
<value>gRPC serviceName</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*http host 中间逗号 (,) 分隔</value>
|
<value>*http host 中间逗号 (,) 分隔</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>*QUIC 加密方式</value>
|
<value>*QUIC 加密方式</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>*tcp 伪装类型</value>
|
<value>raw 伪装类型</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>*kcp 伪装类型</value>
|
<value>kcp 伪装类型</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>*QUIC 伪装类型</value>
|
<value>QUIC 伪装类型</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>*grpc 模式</value>
|
<value>gRPC 模式</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>别名 (remarks)</value>
|
<value>别名 (remarks)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>伪装域名 (host)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>加密方式 (security)</value>
|
<value>加密方式 (security)</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>传输层安全 (TLS)</value>
|
<value>传输层安全 (TLS)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*默认 tcp,选错会无法连接</value>
|
<value>*默认 raw,选错会无法连接</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>Core 类型</value>
|
<value>Core 类型</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>用户代理 (User-Agent)</value>
|
<value>用户代理 (User-Agent)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>仅对 tcp/http、ws 协议生效</value>
|
<value>仅对 raw/http、ws 协议生效</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>当前字体 (需重启)</value>
|
<value>当前字体 (需重启)</value>
|
||||||
|
|
@ -1099,7 +1096,7 @@
|
||||||
<value>测试终止中...</value>
|
<value>测试终止中...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>*grpc Authority</value>
|
<value>gRPC Authority</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>添加 [HTTP]</value>
|
<value>添加 [HTTP]</value>
|
||||||
|
|
@ -1317,8 +1314,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>密码将调用命令行校验,如果因为校验错误导致无法正常运行时,请重启本应用。 密码不会存储,每次重启后都需要再次输入。</value>
|
<value>密码将调用命令行校验,如果因为校验错误导致无法正常运行时,请重启本应用。 密码不会存储,每次重启后都需要再次输入。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*XHTTP 模式</value>
|
<value>XHTTP 模式</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>XHTTP Extra 原始 JSON,格式: { XHTTPObject }</value>
|
<value>XHTTP Extra 原始 JSON,格式: { XHTTPObject }</value>
|
||||||
|
|
@ -1695,4 +1692,10 @@
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>旧版 TUN 保护</value>
|
<value>旧版 TUN 保护</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>伪装域名</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
<value>*QUIC 加密金鑰</value>
|
<value>*QUIC 加密金鑰</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportPathTip4" xml:space="preserve">
|
<data name="TransportPathTip4" xml:space="preserve">
|
||||||
<value>*grpc serviceName</value>
|
<value>gRPC serviceName</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip1" xml:space="preserve">
|
<data name="TransportRequestHostTip1" xml:space="preserve">
|
||||||
<value>*http host 中間逗號 (,) 分隔</value>
|
<value>*http host 中間逗號 (,) 分隔</value>
|
||||||
|
|
@ -357,17 +357,17 @@
|
||||||
<data name="TransportRequestHostTip4" xml:space="preserve">
|
<data name="TransportRequestHostTip4" xml:space="preserve">
|
||||||
<value>*QUIC 加密方式</value>
|
<value>*QUIC 加密方式</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip1" xml:space="preserve">
|
<data name="TransportHeaderType1" xml:space="preserve">
|
||||||
<value>*TCP 偽裝類型</value>
|
<value>raw 偽裝類型</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip2" xml:space="preserve">
|
<data name="TransportHeaderType2" xml:space="preserve">
|
||||||
<value>*KCP 偽裝類型</value>
|
<value>KCP 偽裝類型</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip3" xml:space="preserve">
|
<data name="TransportHeaderType3" xml:space="preserve">
|
||||||
<value>*QUIC 偽裝類型</value>
|
<value>QUIC 偽裝類型</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip4" xml:space="preserve">
|
<data name="TransportHeaderType4" xml:space="preserve">
|
||||||
<value>*GRPC 模式</value>
|
<value>gRPC 模式</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LvTLS" xml:space="preserve">
|
<data name="LvTLS" xml:space="preserve">
|
||||||
<value>TLS</value>
|
<value>TLS</value>
|
||||||
|
|
@ -606,9 +606,6 @@
|
||||||
<data name="TbRemarks" xml:space="preserve">
|
<data name="TbRemarks" xml:space="preserve">
|
||||||
<value>別名 (remarks)</value>
|
<value>別名 (remarks)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbRequestHost" xml:space="preserve">
|
|
||||||
<value>偽裝域名 (host)</value>
|
|
||||||
</data>
|
|
||||||
<data name="TbSecurity" xml:space="preserve">
|
<data name="TbSecurity" xml:space="preserve">
|
||||||
<value>加密方式 (security)</value>
|
<value>加密方式 (security)</value>
|
||||||
</data>
|
</data>
|
||||||
|
|
@ -619,7 +616,7 @@
|
||||||
<value>傳輸層安全性 (TLS)</value>
|
<value>傳輸層安全性 (TLS)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TipNetwork" xml:space="preserve">
|
<data name="TipNetwork" xml:space="preserve">
|
||||||
<value>*預設 TCP,選錯會無法連線</value>
|
<value>*預設 raw,選錯會無法連線</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbCoreType" xml:space="preserve">
|
<data name="TbCoreType" xml:space="preserve">
|
||||||
<value>Core 類型</value>
|
<value>Core 類型</value>
|
||||||
|
|
@ -937,7 +934,7 @@
|
||||||
<value>使用者代理 (User-Agent)</value>
|
<value>使用者代理 (User-Agent)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
<data name="TbSettingsDefUserAgentTips" xml:space="preserve">
|
||||||
<value>僅對 TCP/HTTP、WS 協定生效</value>
|
<value>僅對 raw/HTTP、WS 協定生效</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
<data name="TbSettingsCurrentFontFamily" xml:space="preserve">
|
||||||
<value>目前字型 (需重啟)</value>
|
<value>目前字型 (需重啟)</value>
|
||||||
|
|
@ -1099,7 +1096,7 @@
|
||||||
<value>測試終止中...</value>
|
<value>測試終止中...</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportRequestHostTip5" xml:space="preserve">
|
<data name="TransportRequestHostTip5" xml:space="preserve">
|
||||||
<value>*grpc Authority</value>
|
<value>gRPC Authority</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuAddHttpServer" xml:space="preserve">
|
<data name="menuAddHttpServer" xml:space="preserve">
|
||||||
<value>新增 [HTTP] 節點</value>
|
<value>新增 [HTTP] 節點</value>
|
||||||
|
|
@ -1317,8 +1314,8 @@
|
||||||
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
<data name="TbSettingsLinuxSudoPasswordTip" xml:space="preserve">
|
||||||
<value>密碼將調用命令行校驗,如果因為校驗錯誤導致無法正常運行時,請重啟本應用。密碼不會存儲,每次重啟後都需要再次輸入。</value>
|
<value>密碼將調用命令行校驗,如果因為校驗錯誤導致無法正常運行時,請重啟本應用。密碼不會存儲,每次重啟後都需要再次輸入。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportHeaderTypeTip5" xml:space="preserve">
|
<data name="TransportHeaderType5" xml:space="preserve">
|
||||||
<value>*xhttp 模式</value>
|
<value>xhttp 模式</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TransportExtraTip" xml:space="preserve">
|
<data name="TransportExtraTip" xml:space="preserve">
|
||||||
<value>XHTTP Extra 原始 JSON,格式: { XHTTPObject }</value>
|
<value>XHTTP Extra 原始 JSON,格式: { XHTTPObject }</value>
|
||||||
|
|
@ -1695,4 +1692,10 @@
|
||||||
<data name="TbLegacyProtect" xml:space="preserve">
|
<data name="TbLegacyProtect" xml:space="preserve">
|
||||||
<value>Legacy TUN Protect</value>
|
<value>Legacy TUN Protect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="TbCamouflageDomain" xml:space="preserve">
|
||||||
|
<value>偽裝域名</value>
|
||||||
|
</data>
|
||||||
|
<data name="TbHost" xml:space="preserve">
|
||||||
|
<value>Host</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -22,7 +22,7 @@ public partial class CoreConfigSingboxService
|
||||||
}
|
}
|
||||||
if (withSelector)
|
if (withSelector)
|
||||||
{
|
{
|
||||||
var proxyTags = proxyOutboundList.Where(n => n.tag.StartsWith(Global.ProxyTag)).Select(n => n.tag).ToList();
|
var proxyTags = proxyOutboundList.Where(n => n.tag.StartsWith(baseTagName)).Select(n => n.tag).ToList();
|
||||||
if (proxyTags.Count > 1)
|
if (proxyTags.Count > 1)
|
||||||
{
|
{
|
||||||
proxyOutboundList.InsertRange(0, BuildSelectorOutbounds(proxyTags, baseTagName));
|
proxyOutboundList.InsertRange(0, BuildSelectorOutbounds(proxyTags, baseTagName));
|
||||||
|
|
@ -84,6 +84,8 @@ public partial class CoreConfigSingboxService
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var protocolExtra = _node.GetProtocolExtra();
|
var protocolExtra = _node.GetProtocolExtra();
|
||||||
|
var transportExtra = _node.GetTransportExtra();
|
||||||
|
var network = _node.GetNetwork();
|
||||||
outbound.server = _node.Address;
|
outbound.server = _node.Address;
|
||||||
outbound.server_port = _node.Port;
|
outbound.server_port = _node.Port;
|
||||||
outbound.type = Global.ProtocolTypes[_node.ConfigType];
|
outbound.type = Global.ProtocolTypes[_node.ConfigType];
|
||||||
|
|
@ -114,27 +116,23 @@ public partial class CoreConfigSingboxService
|
||||||
outbound.password = _node.Password;
|
outbound.password = _node.Password;
|
||||||
outbound.udp_over_tcp = protocolExtra.Uot == true ? true : null;
|
outbound.udp_over_tcp = protocolExtra.Uot == true ? true : null;
|
||||||
|
|
||||||
if (_node.Network == nameof(ETransport.tcp) && _node.HeaderType == Global.TcpHeaderHttp)
|
if (network == nameof(ETransport.raw) && transportExtra.RawHeaderType == Global.RawHeaderHttp)
|
||||||
{
|
{
|
||||||
outbound.plugin = "obfs-local";
|
outbound.plugin = "obfs-local";
|
||||||
outbound.plugin_opts = $"obfs=http;obfs-host={_node.RequestHost};";
|
outbound.plugin_opts = $"obfs=http;obfs-host={transportExtra.Host};";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var pluginArgs = string.Empty;
|
var pluginArgs = string.Empty;
|
||||||
if (_node.Network == nameof(ETransport.ws))
|
if (network == nameof(ETransport.ws))
|
||||||
{
|
{
|
||||||
pluginArgs += "mode=websocket;";
|
pluginArgs += "mode=websocket;";
|
||||||
pluginArgs += $"host={_node.RequestHost};";
|
pluginArgs += $"host={transportExtra.Host};";
|
||||||
// https://github.com/shadowsocks/v2ray-plugin/blob/e9af1cdd2549d528deb20a4ab8d61c5fbe51f306/args.go#L172
|
// https://github.com/shadowsocks/v2ray-plugin/blob/e9af1cdd2549d528deb20a4ab8d61c5fbe51f306/args.go#L172
|
||||||
// Equal signs and commas [and backslashes] must be escaped with a backslash.
|
// Equal signs and commas [and backslashes] must be escaped with a backslash.
|
||||||
var path = _node.Path.Replace("\\", "\\\\").Replace("=", "\\=").Replace(",", "\\,");
|
var path = (transportExtra.Path ?? string.Empty).Replace("\\", "\\\\").Replace("=", "\\=").Replace(",", "\\,");
|
||||||
pluginArgs += $"path={path};";
|
pluginArgs += $"path={path};";
|
||||||
}
|
}
|
||||||
else if (_node.Network == nameof(ETransport.quic))
|
|
||||||
{
|
|
||||||
pluginArgs += "mode=quic;";
|
|
||||||
}
|
|
||||||
if (_node.StreamSecurity == Global.StreamSecurity)
|
if (_node.StreamSecurity == Global.StreamSecurity)
|
||||||
{
|
{
|
||||||
pluginArgs += "tls;";
|
pluginArgs += "tls;";
|
||||||
|
|
@ -381,9 +379,18 @@ public partial class CoreConfigSingboxService
|
||||||
{
|
{
|
||||||
serverName = _node.Sni;
|
serverName = _node.Sni;
|
||||||
}
|
}
|
||||||
else if (_node.RequestHost.IsNotEmpty())
|
else
|
||||||
{
|
{
|
||||||
serverName = Utils.String2List(_node.RequestHost)?.First();
|
var host = _node.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => _node.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.ws) => _node.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.httpupgrade) => _node.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.xhttp) => _node.GetTransportExtra().Host,
|
||||||
|
nameof(ETransport.grpc) => _node.GetTransportExtra().GrpcAuthority,
|
||||||
|
_ => null,
|
||||||
|
};
|
||||||
|
serverName = Utils.String2List(host)?.First();
|
||||||
}
|
}
|
||||||
var tls = new Tls4Sbox()
|
var tls = new Tls4Sbox()
|
||||||
{
|
{
|
||||||
|
|
@ -438,27 +445,22 @@ public partial class CoreConfigSingboxService
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var transport = new Transport4Sbox();
|
var transport = new Transport4Sbox();
|
||||||
|
var transportExtra = _node.GetTransportExtra();
|
||||||
|
|
||||||
switch (_node.GetNetwork())
|
switch (_node.GetNetwork())
|
||||||
{
|
{
|
||||||
case nameof(ETransport.h2):
|
case nameof(ETransport.raw): //http
|
||||||
transport.type = nameof(ETransport.http);
|
if (transportExtra.RawHeaderType == Global.RawHeaderHttp)
|
||||||
transport.host = _node.RequestHost.IsNullOrEmpty() ? null : Utils.String2List(_node.RequestHost);
|
|
||||||
transport.path = _node.Path.NullIfEmpty();
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.tcp): //http
|
|
||||||
if (_node.HeaderType == Global.TcpHeaderHttp)
|
|
||||||
{
|
{
|
||||||
transport.type = nameof(ETransport.http);
|
transport.type = nameof(ETransport.http);
|
||||||
transport.host = _node.RequestHost.IsNullOrEmpty() ? null : Utils.String2List(_node.RequestHost);
|
transport.host = transportExtra.Host.IsNullOrEmpty() ? null : Utils.String2List(transportExtra.Host);
|
||||||
transport.path = _node.Path.NullIfEmpty();
|
transport.path = transportExtra.Path.NullIfEmpty();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.ws):
|
case nameof(ETransport.ws):
|
||||||
transport.type = nameof(ETransport.ws);
|
transport.type = nameof(ETransport.ws);
|
||||||
var wsPath = _node.Path;
|
var wsPath = transportExtra.Path;
|
||||||
|
|
||||||
// Parse eh and ed parameters from path using regex
|
// Parse eh and ed parameters from path using regex
|
||||||
if (!wsPath.IsNullOrEmpty())
|
if (!wsPath.IsNullOrEmpty())
|
||||||
|
|
@ -487,29 +489,25 @@ public partial class CoreConfigSingboxService
|
||||||
}
|
}
|
||||||
|
|
||||||
transport.path = wsPath.NullIfEmpty();
|
transport.path = wsPath.NullIfEmpty();
|
||||||
if (_node.RequestHost.IsNotEmpty())
|
if (transportExtra.Host.IsNotEmpty())
|
||||||
{
|
{
|
||||||
transport.headers = new()
|
transport.headers = new()
|
||||||
{
|
{
|
||||||
Host = _node.RequestHost
|
Host = transportExtra.Host
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.httpupgrade):
|
case nameof(ETransport.httpupgrade):
|
||||||
transport.type = nameof(ETransport.httpupgrade);
|
transport.type = nameof(ETransport.httpupgrade);
|
||||||
transport.path = _node.Path.NullIfEmpty();
|
transport.path = transportExtra.Path.NullIfEmpty();
|
||||||
transport.host = _node.RequestHost.NullIfEmpty();
|
transport.host = transportExtra.Host.NullIfEmpty();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.quic):
|
|
||||||
transport.type = nameof(ETransport.quic);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.grpc):
|
case nameof(ETransport.grpc):
|
||||||
transport.type = nameof(ETransport.grpc);
|
transport.type = nameof(ETransport.grpc);
|
||||||
transport.service_name = _node.Path;
|
transport.service_name = transportExtra.GrpcServiceName;
|
||||||
transport.idle_timeout = _config.GrpcItem.IdleTimeout?.ToString("##s");
|
transport.idle_timeout = _config.GrpcItem.IdleTimeout?.ToString("##s");
|
||||||
transport.ping_timeout = _config.GrpcItem.HealthCheckTimeout?.ToString("##s");
|
transport.ping_timeout = _config.GrpcItem.HealthCheckTimeout?.ToString("##s");
|
||||||
transport.permit_without_stream = _config.GrpcItem.PermitWithoutStream;
|
transport.permit_without_stream = _config.GrpcItem.PermitWithoutStream;
|
||||||
|
|
|
||||||
|
|
@ -348,8 +348,49 @@ public partial class CoreConfigV2rayService
|
||||||
network = "hysteria";
|
network = "hysteria";
|
||||||
}
|
}
|
||||||
streamSettings.network = network;
|
streamSettings.network = network;
|
||||||
var host = _node.RequestHost.TrimEx();
|
var transport = _node.GetTransportExtra();
|
||||||
var path = _node.Path.TrimEx();
|
var host = string.Empty;
|
||||||
|
var path = string.Empty;
|
||||||
|
var kcpSeed = string.Empty;
|
||||||
|
var headerType = string.Empty;
|
||||||
|
var xhttpExtra = string.Empty;
|
||||||
|
switch (network)
|
||||||
|
{
|
||||||
|
case nameof(ETransport.raw):
|
||||||
|
host = transport.Host?.TrimEx() ?? string.Empty;
|
||||||
|
path = transport.Path?.TrimEx() ?? string.Empty;
|
||||||
|
headerType = transport.RawHeaderType?.TrimEx() ?? string.Empty;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.kcp):
|
||||||
|
kcpSeed = transport.KcpSeed?.TrimEx() ?? string.Empty;
|
||||||
|
headerType = transport.KcpHeaderType?.TrimEx() ?? string.Empty;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.ws):
|
||||||
|
host = transport.Host?.TrimEx() ?? string.Empty;
|
||||||
|
path = transport.Path?.TrimEx() ?? string.Empty;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.httpupgrade):
|
||||||
|
host = transport.Host?.TrimEx() ?? string.Empty;
|
||||||
|
path = transport.Path?.TrimEx() ?? string.Empty;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.xhttp):
|
||||||
|
host = transport.Host?.TrimEx() ?? string.Empty;
|
||||||
|
path = transport.Path?.TrimEx() ?? string.Empty;
|
||||||
|
headerType = transport.XhttpMode?.TrimEx() ?? string.Empty;
|
||||||
|
xhttpExtra = transport.XhttpExtra?.TrimEx() ?? string.Empty;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case nameof(ETransport.grpc):
|
||||||
|
host = transport.GrpcAuthority?.TrimEx() ?? string.Empty;
|
||||||
|
path = transport.GrpcServiceName?.TrimEx() ?? string.Empty;
|
||||||
|
headerType = transport.GrpcMode?.TrimEx() ?? string.Empty;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
var sni = _node.Sni.TrimEx();
|
var sni = _node.Sni.TrimEx();
|
||||||
var useragent = _config.CoreBasicItem.DefUserAgent ?? string.Empty;
|
var useragent = _config.CoreBasicItem.DefUserAgent ?? string.Empty;
|
||||||
|
|
||||||
|
|
@ -435,19 +476,19 @@ public partial class CoreConfigV2rayService
|
||||||
kcpSettings.readBufferSize = _config.KcpItem.ReadBufferSize;
|
kcpSettings.readBufferSize = _config.KcpItem.ReadBufferSize;
|
||||||
kcpSettings.writeBufferSize = _config.KcpItem.WriteBufferSize;
|
kcpSettings.writeBufferSize = _config.KcpItem.WriteBufferSize;
|
||||||
var kcpFinalmask = new Finalmask4Ray();
|
var kcpFinalmask = new Finalmask4Ray();
|
||||||
if (Global.KcpHeaderMaskMap.TryGetValue(_node.HeaderType, out var header))
|
if (Global.KcpHeaderMaskMap.TryGetValue(headerType, out var header))
|
||||||
{
|
{
|
||||||
kcpFinalmask.udp =
|
kcpFinalmask.udp =
|
||||||
[
|
[
|
||||||
new Mask4Ray
|
new Mask4Ray
|
||||||
{
|
{
|
||||||
type = header,
|
type = header,
|
||||||
settings = _node.HeaderType == "dns" && !host.IsNullOrEmpty() ? new MaskSettings4Ray { domain = host } : null
|
settings = null
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
kcpFinalmask.udp ??= [];
|
kcpFinalmask.udp ??= [];
|
||||||
if (path.IsNullOrEmpty())
|
if (kcpSeed.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
kcpFinalmask.udp.Add(new Mask4Ray
|
kcpFinalmask.udp.Add(new Mask4Ray
|
||||||
{
|
{
|
||||||
|
|
@ -459,7 +500,7 @@ public partial class CoreConfigV2rayService
|
||||||
kcpFinalmask.udp.Add(new Mask4Ray
|
kcpFinalmask.udp.Add(new Mask4Ray
|
||||||
{
|
{
|
||||||
type = "mkcp-aes128gcm",
|
type = "mkcp-aes128gcm",
|
||||||
settings = new MaskSettings4Ray { password = path }
|
settings = new MaskSettings4Ray { password = kcpSeed }
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
streamSettings.kcpSettings = kcpSettings;
|
streamSettings.kcpSettings = kcpSettings;
|
||||||
|
|
@ -517,63 +558,25 @@ public partial class CoreConfigV2rayService
|
||||||
{
|
{
|
||||||
xhttpSettings.host = host;
|
xhttpSettings.host = host;
|
||||||
}
|
}
|
||||||
if (_node.HeaderType.IsNotEmpty() && Global.XhttpMode.Contains(_node.HeaderType))
|
if (headerType.IsNotEmpty() && Global.XhttpMode.Contains(headerType))
|
||||||
{
|
{
|
||||||
xhttpSettings.mode = _node.HeaderType;
|
xhttpSettings.mode = headerType;
|
||||||
}
|
}
|
||||||
if (_node.Extra.IsNotEmpty())
|
if (xhttpExtra.IsNotEmpty())
|
||||||
{
|
{
|
||||||
xhttpSettings.extra = JsonUtils.ParseJson(_node.Extra);
|
xhttpSettings.extra = JsonUtils.ParseJson(xhttpExtra);
|
||||||
}
|
}
|
||||||
|
|
||||||
streamSettings.xhttpSettings = xhttpSettings;
|
streamSettings.xhttpSettings = xhttpSettings;
|
||||||
FillOutboundMux(outbound);
|
FillOutboundMux(outbound);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
//h2
|
|
||||||
case nameof(ETransport.h2):
|
|
||||||
HttpSettings4Ray httpSettings = new();
|
|
||||||
|
|
||||||
if (host.IsNotEmpty())
|
|
||||||
{
|
|
||||||
httpSettings.host = Utils.String2List(host);
|
|
||||||
}
|
|
||||||
httpSettings.path = path;
|
|
||||||
|
|
||||||
streamSettings.httpSettings = httpSettings;
|
|
||||||
|
|
||||||
break;
|
|
||||||
//quic
|
|
||||||
case nameof(ETransport.quic):
|
|
||||||
QuicSettings4Ray quicsettings = new()
|
|
||||||
{
|
|
||||||
security = host,
|
|
||||||
key = path,
|
|
||||||
header = new Header4Ray
|
|
||||||
{
|
|
||||||
type = _node.HeaderType
|
|
||||||
}
|
|
||||||
};
|
|
||||||
streamSettings.quicSettings = quicsettings;
|
|
||||||
if (_node.StreamSecurity == Global.StreamSecurity)
|
|
||||||
{
|
|
||||||
if (sni.IsNotEmpty())
|
|
||||||
{
|
|
||||||
streamSettings.tlsSettings.serverName = sni;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
streamSettings.tlsSettings.serverName = _node.Address;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.grpc):
|
case nameof(ETransport.grpc):
|
||||||
GrpcSettings4Ray grpcSettings = new()
|
GrpcSettings4Ray grpcSettings = new()
|
||||||
{
|
{
|
||||||
authority = host.NullIfEmpty(),
|
authority = host.NullIfEmpty(),
|
||||||
serviceName = path,
|
serviceName = path,
|
||||||
multiMode = _node.HeaderType == Global.GrpcMultiMode,
|
multiMode = headerType == Global.GrpcMultiMode,
|
||||||
idle_timeout = _config.GrpcItem.IdleTimeout,
|
idle_timeout = _config.GrpcItem.IdleTimeout,
|
||||||
health_check_timeout = _config.GrpcItem.HealthCheckTimeout,
|
health_check_timeout = _config.GrpcItem.HealthCheckTimeout,
|
||||||
permit_without_stream = _config.GrpcItem.PermitWithoutStream,
|
permit_without_stream = _config.GrpcItem.PermitWithoutStream,
|
||||||
|
|
@ -640,20 +643,20 @@ public partial class CoreConfigV2rayService
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
//tcp
|
// raw
|
||||||
if (_node.HeaderType == Global.TcpHeaderHttp)
|
if (headerType == Global.RawHeaderHttp)
|
||||||
{
|
{
|
||||||
TcpSettings4Ray tcpSettings = new()
|
RawSettings4Ray rawSettings = new()
|
||||||
{
|
{
|
||||||
header = new Header4Ray
|
header = new Header4Ray
|
||||||
{
|
{
|
||||||
type = _node.HeaderType
|
type = headerType
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//request Host
|
//request Host
|
||||||
var request = EmbedUtils.GetEmbedText(Global.V2raySampleHttpRequestFileName);
|
var request = EmbedUtils.GetEmbedText(Global.V2raySampleHttpRequestFileName);
|
||||||
var useragentValue = Global.TcpHttpUserAgentTexts.GetValueOrDefault(useragent, useragent);
|
var useragentValue = Global.RawHttpUserAgentTexts.GetValueOrDefault(useragent, useragent);
|
||||||
var arrHost = host.Split(',');
|
var arrHost = host.Split(',');
|
||||||
var host2 = string.Join(",".AppendQuotes(), arrHost);
|
var host2 = string.Join(",".AppendQuotes(), arrHost);
|
||||||
request = request.Replace("$requestHost$", $"{host2.AppendQuotes()}");
|
request = request.Replace("$requestHost$", $"{host2.AppendQuotes()}");
|
||||||
|
|
@ -666,9 +669,9 @@ public partial class CoreConfigV2rayService
|
||||||
pathHttp = string.Join(",".AppendQuotes(), arrPath);
|
pathHttp = string.Join(",".AppendQuotes(), arrPath);
|
||||||
}
|
}
|
||||||
request = request.Replace("$requestPath$", $"{pathHttp.AppendQuotes()}");
|
request = request.Replace("$requestPath$", $"{pathHttp.AppendQuotes()}");
|
||||||
tcpSettings.header.request = JsonUtils.Deserialize<object>(request);
|
rawSettings.header.request = JsonUtils.Deserialize<object>(request);
|
||||||
|
|
||||||
streamSettings.tcpSettings = tcpSettings;
|
streamSettings.rawSettings = rawSettings;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,152 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
[Reactive]
|
[Reactive]
|
||||||
public bool NaiveQuic { get; set; }
|
public bool NaiveQuic { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string RawHeaderType { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string Host { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string Path { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string XhttpMode { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string XhttpExtra { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string GrpcAuthority { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string GrpcServiceName { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string GrpcMode { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string KcpHeaderType { get; set; }
|
||||||
|
|
||||||
|
[Reactive]
|
||||||
|
public string KcpSeed { get; set; }
|
||||||
|
|
||||||
|
public string TransportHeaderType
|
||||||
|
{
|
||||||
|
get => SelectedSource.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => RawHeaderType,
|
||||||
|
nameof(ETransport.kcp) => KcpHeaderType,
|
||||||
|
nameof(ETransport.xhttp) => XhttpMode,
|
||||||
|
nameof(ETransport.grpc) => GrpcMode,
|
||||||
|
_ => string.Empty,
|
||||||
|
};
|
||||||
|
set
|
||||||
|
{
|
||||||
|
switch (SelectedSource.GetNetwork())
|
||||||
|
{
|
||||||
|
case nameof(ETransport.raw):
|
||||||
|
RawHeaderType = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.kcp):
|
||||||
|
KcpHeaderType = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.xhttp):
|
||||||
|
XhttpMode = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.grpc):
|
||||||
|
GrpcMode = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.RaisePropertyChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string TransportHost
|
||||||
|
{
|
||||||
|
get => SelectedSource.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => Host,
|
||||||
|
nameof(ETransport.ws) => Host,
|
||||||
|
nameof(ETransport.httpupgrade) => Host,
|
||||||
|
nameof(ETransport.xhttp) => Host,
|
||||||
|
nameof(ETransport.grpc) => GrpcAuthority,
|
||||||
|
_ => string.Empty,
|
||||||
|
};
|
||||||
|
set
|
||||||
|
{
|
||||||
|
switch (SelectedSource.GetNetwork())
|
||||||
|
{
|
||||||
|
case nameof(ETransport.raw):
|
||||||
|
Host = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.ws):
|
||||||
|
Host = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.httpupgrade):
|
||||||
|
Host = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.xhttp):
|
||||||
|
Host = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.grpc):
|
||||||
|
GrpcAuthority = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.RaisePropertyChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string TransportPath
|
||||||
|
{
|
||||||
|
get => SelectedSource.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.kcp) => KcpSeed,
|
||||||
|
nameof(ETransport.ws) => Path,
|
||||||
|
nameof(ETransport.httpupgrade) => Path,
|
||||||
|
nameof(ETransport.xhttp) => Path,
|
||||||
|
nameof(ETransport.grpc) => GrpcServiceName,
|
||||||
|
_ => string.Empty,
|
||||||
|
};
|
||||||
|
set
|
||||||
|
{
|
||||||
|
switch (SelectedSource.GetNetwork())
|
||||||
|
{
|
||||||
|
case nameof(ETransport.kcp):
|
||||||
|
KcpSeed = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.ws):
|
||||||
|
Path = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.httpupgrade):
|
||||||
|
Path = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.xhttp):
|
||||||
|
Path = value;
|
||||||
|
break;
|
||||||
|
case nameof(ETransport.grpc):
|
||||||
|
GrpcServiceName = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.RaisePropertyChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string TransportExtraText
|
||||||
|
{
|
||||||
|
get => SelectedSource.GetNetwork() == nameof(ETransport.xhttp)
|
||||||
|
? XhttpExtra
|
||||||
|
: string.Empty;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (SelectedSource.GetNetwork() == nameof(ETransport.xhttp))
|
||||||
|
{
|
||||||
|
XhttpExtra = value;
|
||||||
|
}
|
||||||
|
this.RaisePropertyChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public ReactiveCommand<Unit, Unit> FetchCertCmd { get; }
|
public ReactiveCommand<Unit, Unit> FetchCertCmd { get; }
|
||||||
public ReactiveCommand<Unit, Unit> FetchCertChainCmd { get; }
|
public ReactiveCommand<Unit, Unit> FetchCertChainCmd { get; }
|
||||||
public ReactiveCommand<Unit, Unit> SaveCmd { get; }
|
public ReactiveCommand<Unit, Unit> SaveCmd { get; }
|
||||||
|
|
@ -101,14 +247,21 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
this.WhenAnyValue(x => x.CertSha)
|
this.WhenAnyValue(x => x.CertSha)
|
||||||
.Subscribe(_ => UpdateCertTip());
|
.Subscribe(_ => UpdateCertTip());
|
||||||
|
|
||||||
|
this.WhenAnyValue(x => x.SelectedSource.Network)
|
||||||
|
.Subscribe(_ =>
|
||||||
|
{
|
||||||
|
this.RaisePropertyChanged(nameof(TransportHeaderType));
|
||||||
|
this.RaisePropertyChanged(nameof(TransportHost));
|
||||||
|
this.RaisePropertyChanged(nameof(TransportPath));
|
||||||
|
this.RaisePropertyChanged(nameof(TransportExtraText));
|
||||||
|
});
|
||||||
|
|
||||||
this.WhenAnyValue(x => x.Cert)
|
this.WhenAnyValue(x => x.Cert)
|
||||||
.Subscribe(_ => UpdateCertSha());
|
.Subscribe(_ => UpdateCertSha());
|
||||||
|
|
||||||
if (profileItem.IndexId.IsNullOrEmpty())
|
if (profileItem.IndexId.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
profileItem.Network = Global.DefaultNetwork;
|
profileItem.Network = Global.DefaultNetwork;
|
||||||
profileItem.HeaderType = Global.None;
|
|
||||||
profileItem.RequestHost = "";
|
|
||||||
profileItem.StreamSecurity = "";
|
profileItem.StreamSecurity = "";
|
||||||
SelectedSource = profileItem;
|
SelectedSource = profileItem;
|
||||||
}
|
}
|
||||||
|
|
@ -121,6 +274,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
CertSha = SelectedSource?.CertSha?.ToString() ?? string.Empty;
|
CertSha = SelectedSource?.CertSha?.ToString() ?? string.Empty;
|
||||||
|
|
||||||
var protocolExtra = SelectedSource?.GetProtocolExtra();
|
var protocolExtra = SelectedSource?.GetProtocolExtra();
|
||||||
|
var transport = protocolExtra?.Transport ?? new TransportExtra();
|
||||||
Ports = protocolExtra?.Ports ?? string.Empty;
|
Ports = protocolExtra?.Ports ?? string.Empty;
|
||||||
AlterId = int.TryParse(protocolExtra?.AlterId, out var result) ? result : 0;
|
AlterId = int.TryParse(protocolExtra?.AlterId, out var result) ? result : 0;
|
||||||
Flow = protocolExtra?.Flow ?? string.Empty;
|
Flow = protocolExtra?.Flow ?? string.Empty;
|
||||||
|
|
@ -139,6 +293,18 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
CongestionControl = protocolExtra?.CongestionControl ?? string.Empty;
|
CongestionControl = protocolExtra?.CongestionControl ?? string.Empty;
|
||||||
InsecureConcurrency = protocolExtra?.InsecureConcurrency > 0 ? protocolExtra.InsecureConcurrency : null;
|
InsecureConcurrency = protocolExtra?.InsecureConcurrency > 0 ? protocolExtra.InsecureConcurrency : null;
|
||||||
NaiveQuic = protocolExtra?.NaiveQuic ?? false;
|
NaiveQuic = protocolExtra?.NaiveQuic ?? false;
|
||||||
|
|
||||||
|
RawHeaderType = transport.RawHeaderType ?? Global.None;
|
||||||
|
Host = transport.Host ?? string.Empty;
|
||||||
|
Path = transport.Path ?? string.Empty;
|
||||||
|
XhttpMode = transport.XhttpMode ?? Global.DefaultXhttpMode;
|
||||||
|
XhttpExtra = transport.XhttpExtra ?? string.Empty;
|
||||||
|
GrpcAuthority = transport.GrpcAuthority ?? string.Empty;
|
||||||
|
GrpcServiceName = transport.GrpcServiceName ?? string.Empty;
|
||||||
|
GrpcMode = transport.GrpcMode.IsNullOrEmpty() ? Global.GrpcGunMode : transport.GrpcMode;
|
||||||
|
KcpHeaderType = transport.KcpHeaderType.IsNullOrEmpty() ? Global.None : transport.KcpHeaderType;
|
||||||
|
KcpSeed = transport.KcpSeed ?? string.Empty;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task SaveServerAsync()
|
private async Task SaveServerAsync()
|
||||||
|
|
@ -185,8 +351,28 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
SelectedSource.CoreType = CoreType.IsNullOrEmpty() ? null : (ECoreType)Enum.Parse(typeof(ECoreType), CoreType);
|
SelectedSource.CoreType = CoreType.IsNullOrEmpty() ? null : (ECoreType)Enum.Parse(typeof(ECoreType), CoreType);
|
||||||
SelectedSource.Cert = Cert.IsNullOrEmpty() ? string.Empty : Cert;
|
SelectedSource.Cert = Cert.IsNullOrEmpty() ? string.Empty : Cert;
|
||||||
SelectedSource.CertSha = CertSha.IsNullOrEmpty() ? string.Empty : CertSha;
|
SelectedSource.CertSha = CertSha.IsNullOrEmpty() ? string.Empty : CertSha;
|
||||||
|
if (!Global.Networks.Contains(SelectedSource.Network))
|
||||||
|
{
|
||||||
|
SelectedSource.Network = Global.DefaultNetwork;
|
||||||
|
}
|
||||||
|
|
||||||
|
var transport = new TransportExtra
|
||||||
|
{
|
||||||
|
RawHeaderType = RawHeaderType.NullIfEmpty(),
|
||||||
|
Host = Host.NullIfEmpty(),
|
||||||
|
Path = Path.NullIfEmpty(),
|
||||||
|
XhttpMode = XhttpMode.NullIfEmpty(),
|
||||||
|
XhttpExtra = XhttpExtra.NullIfEmpty(),
|
||||||
|
GrpcAuthority = GrpcAuthority.NullIfEmpty(),
|
||||||
|
GrpcServiceName = GrpcServiceName.NullIfEmpty(),
|
||||||
|
GrpcMode = GrpcMode.NullIfEmpty(),
|
||||||
|
KcpHeaderType = KcpHeaderType.NullIfEmpty(),
|
||||||
|
KcpSeed = KcpSeed.NullIfEmpty(),
|
||||||
|
};
|
||||||
|
|
||||||
SelectedSource.SetProtocolExtra(SelectedSource.GetProtocolExtra() with
|
SelectedSource.SetProtocolExtra(SelectedSource.GetProtocolExtra() with
|
||||||
{
|
{
|
||||||
|
Transport = transport,
|
||||||
Ports = Ports.NullIfEmpty(),
|
Ports = Ports.NullIfEmpty(),
|
||||||
AlterId = AlterId > 0 ? AlterId.ToString() : null,
|
AlterId = AlterId > 0 ? AlterId.ToString() : null,
|
||||||
Flow = Flow.NullIfEmpty(),
|
Flow = Flow.NullIfEmpty(),
|
||||||
|
|
@ -261,7 +447,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
var serverName = SelectedSource.Sni;
|
var serverName = SelectedSource.Sni;
|
||||||
if (serverName.IsNullOrEmpty())
|
if (serverName.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
serverName = SelectedSource.RequestHost;
|
serverName = GetCurrentTransportHost();
|
||||||
}
|
}
|
||||||
if (serverName.IsNullOrEmpty())
|
if (serverName.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
|
|
@ -286,7 +472,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
var serverName = SelectedSource.Sni;
|
var serverName = SelectedSource.Sni;
|
||||||
if (serverName.IsNullOrEmpty())
|
if (serverName.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
serverName = SelectedSource.RequestHost;
|
serverName = GetCurrentTransportHost();
|
||||||
}
|
}
|
||||||
if (serverName.IsNullOrEmpty())
|
if (serverName.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
|
|
@ -301,4 +487,17 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
Cert = CertPemManager.ConcatenatePemChain(certs);
|
Cert = CertPemManager.ConcatenatePemChain(certs);
|
||||||
UpdateCertTip(certError);
|
UpdateCertTip(certError);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private string GetCurrentTransportHost()
|
||||||
|
{
|
||||||
|
return SelectedSource.GetNetwork() switch
|
||||||
|
{
|
||||||
|
nameof(ETransport.raw) => Host,
|
||||||
|
nameof(ETransport.ws) => Host,
|
||||||
|
nameof(ETransport.httpupgrade) => Host,
|
||||||
|
nameof(ETransport.xhttp) => Host,
|
||||||
|
nameof(ETransport.grpc) => GrpcAuthority,
|
||||||
|
_ => string.Empty,
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -709,18 +709,22 @@ public class ProfilesViewModel : MyReactiveObject
|
||||||
|
|
||||||
public async Task ServerSpeedtest(ESpeedActionType actionType)
|
public async Task ServerSpeedtest(ESpeedActionType actionType)
|
||||||
{
|
{
|
||||||
if (actionType == ESpeedActionType.Mixedtest)
|
List<ProfileItem>? lstSelected;
|
||||||
|
if (actionType is ESpeedActionType.Mixedtest or ESpeedActionType.FastRealping)
|
||||||
{
|
{
|
||||||
SelectedProfiles = ProfileItems;
|
if (actionType == ESpeedActionType.FastRealping)
|
||||||
|
{
|
||||||
|
actionType = ESpeedActionType.Realping;
|
||||||
|
}
|
||||||
|
|
||||||
|
lstSelected = JsonUtils.Deserialize<List<ProfileItem>>(JsonUtils.Serialize(ProfileItems?.OrderBy(t => t.Sort)));
|
||||||
}
|
}
|
||||||
else if (actionType == ESpeedActionType.FastRealping)
|
else
|
||||||
{
|
{
|
||||||
SelectedProfiles = ProfileItems;
|
lstSelected = await GetProfileItems(false);
|
||||||
actionType = ESpeedActionType.Realping;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var lstSelected = await GetProfileItems(false);
|
if (lstSelected is null || lstSelected.Count <= 0)
|
||||||
if (lstSelected == null)
|
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -690,128 +690,279 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridTransport"
|
x:Name="gridTransport"
|
||||||
Grid.Row="4"
|
Grid.Row="4"
|
||||||
ColumnDefinitions="300,Auto,Auto"
|
RowDefinitions="Auto,Auto,Auto">
|
||||||
RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto,Auto,Auto">
|
|
||||||
|
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.ColumnSpan="2"
|
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
Text="{x:Static resx:ResUI.GbTransport}" />
|
Text="{x:Static resx:ResUI.GbTransport}" />
|
||||||
|
|
||||||
<TextBlock
|
<Grid Grid.Row="1" ColumnDefinitions="300,Auto,Auto">
|
||||||
Grid.Row="1"
|
<TextBlock
|
||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Text="{x:Static resx:ResUI.TbNetwork}" />
|
Text="{x:Static resx:ResUI.TbNetwork}" />
|
||||||
<ComboBox
|
|
||||||
x:Name="cmbNetwork"
|
|
||||||
Grid.Row="1"
|
|
||||||
Grid.Column="1"
|
|
||||||
Width="200"
|
|
||||||
Margin="{StaticResource Margin4}" />
|
|
||||||
<TextBlock
|
|
||||||
Grid.Row="1"
|
|
||||||
Grid.Column="2"
|
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Text="{x:Static resx:ResUI.TipNetwork}" />
|
|
||||||
|
|
||||||
<TextBlock
|
|
||||||
x:Name="labHeaderType"
|
|
||||||
Grid.Row="2"
|
|
||||||
Grid.Column="0"
|
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Text="{x:Static resx:ResUI.TbHeaderType}" />
|
|
||||||
<StackPanel
|
|
||||||
Grid.Row="2"
|
|
||||||
Grid.Column="1"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Orientation="Horizontal">
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
x:Name="cmbHeaderType"
|
x:Name="cmbNetwork"
|
||||||
|
Grid.Column="1"
|
||||||
Width="200"
|
Width="200"
|
||||||
Margin="{StaticResource Margin4}" />
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TipNetwork}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
<Button
|
<Grid Grid.Row="2">
|
||||||
x:Name="btnExtra"
|
<Grid
|
||||||
Margin="{StaticResource MarginLr8}"
|
x:Name="gridTransportRaw"
|
||||||
Classes="IconButton">
|
IsVisible="False"
|
||||||
<Button.Content>
|
RowDefinitions="Auto,Auto">
|
||||||
<PathIcon Data="{StaticResource SemiIconMore}">
|
<Grid Grid.Row="0" ColumnDefinitions="300,Auto">
|
||||||
<PathIcon.RenderTransform>
|
<TextBlock
|
||||||
<RotateTransform Angle="90" />
|
Grid.Row="0"
|
||||||
</PathIcon.RenderTransform>
|
Grid.Column="0"
|
||||||
</PathIcon>
|
Margin="{StaticResource Margin4}"
|
||||||
</Button.Content>
|
VerticalAlignment="Center"
|
||||||
<Button.Flyout>
|
Text="{x:Static resx:ResUI.TransportHeaderType1}" />
|
||||||
<Flyout>
|
<ComboBox
|
||||||
<StackPanel>
|
x:Name="cmbHeaderTypeRaw"
|
||||||
<TextBlock
|
Grid.Row="0"
|
||||||
Margin="{StaticResource Margin4}"
|
Grid.Column="1"
|
||||||
VerticalAlignment="Center"
|
Width="200"
|
||||||
Text="{x:Static resx:ResUI.TransportExtraTip}" />
|
Margin="{StaticResource Margin4}" />
|
||||||
<views:JsonEditor
|
</Grid>
|
||||||
x:Name="txtExtra"
|
|
||||||
Width="400"
|
|
||||||
MinHeight="100"
|
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
VerticalAlignment="Center" />
|
|
||||||
</StackPanel>
|
|
||||||
</Flyout>
|
|
||||||
</Button.Flyout>
|
|
||||||
</Button>
|
|
||||||
</StackPanel>
|
|
||||||
<TextBlock
|
|
||||||
x:Name="tipHeaderType"
|
|
||||||
Grid.Row="2"
|
|
||||||
Grid.Column="2"
|
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Text="{x:Static resx:ResUI.TbHeaderType}" />
|
|
||||||
|
|
||||||
<TextBlock
|
<Grid
|
||||||
Grid.Row="3"
|
x:Name="gridTransportRawHttp"
|
||||||
Grid.Column="0"
|
Grid.Row="1"
|
||||||
Margin="{StaticResource Margin4}"
|
ColumnDefinitions="300,Auto"
|
||||||
VerticalAlignment="Center"
|
IsVisible="False"
|
||||||
Text="{x:Static resx:ResUI.TbRequestHost}" />
|
RowDefinitions="Auto,Auto">
|
||||||
<TextBox
|
<TextBlock
|
||||||
x:Name="txtRequestHost"
|
Grid.Row="0"
|
||||||
Grid.Row="3"
|
Grid.Column="0"
|
||||||
Grid.Column="1"
|
Margin="{StaticResource Margin4}"
|
||||||
Width="400"
|
VerticalAlignment="Center"
|
||||||
Margin="{StaticResource Margin4}" />
|
Text="{x:Static resx:ResUI.TbCamouflageDomain}" />
|
||||||
<TextBlock
|
<TextBox
|
||||||
x:Name="tipRequestHost"
|
x:Name="txtRequestHostRaw"
|
||||||
Grid.Row="3"
|
Grid.Row="0"
|
||||||
Grid.Column="2"
|
Grid.Column="1"
|
||||||
Margin="{StaticResource Margin4}"
|
Width="400"
|
||||||
VerticalAlignment="Center"
|
Margin="{StaticResource Margin4}" />
|
||||||
Text="{x:Static resx:ResUI.TbRequestHost}" />
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathRaw"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
<TextBlock
|
<Grid
|
||||||
Grid.Row="4"
|
x:Name="gridTransportXhttp"
|
||||||
Grid.Column="0"
|
ColumnDefinitions="300,Auto"
|
||||||
Margin="{StaticResource Margin4}"
|
IsVisible="False"
|
||||||
VerticalAlignment="Center"
|
RowDefinitions="Auto,Auto,Auto,Auto">
|
||||||
Text="{x:Static resx:ResUI.TbPath}" />
|
<TextBlock
|
||||||
<TextBox
|
Grid.Row="0"
|
||||||
x:Name="txtPath"
|
Grid.Column="0"
|
||||||
Grid.Row="4"
|
Margin="{StaticResource Margin4}"
|
||||||
Grid.Column="1"
|
VerticalAlignment="Center"
|
||||||
Width="400"
|
Text="{x:Static resx:ResUI.TransportHeaderType5}" />
|
||||||
Margin="{StaticResource Margin4}" />
|
<ComboBox
|
||||||
<TextBlock
|
x:Name="cmbHeaderTypeXhttp"
|
||||||
x:Name="tipPath"
|
Grid.Row="0"
|
||||||
Grid.Row="4"
|
Grid.Column="1"
|
||||||
Grid.Column="2"
|
Width="200"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}" />
|
||||||
VerticalAlignment="Center"
|
<TextBlock
|
||||||
Text="{x:Static resx:ResUI.TbPath}" />
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbHost}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostXhttp"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathXhttp"
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="3"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
Text="{x:Static resx:ResUI.TransportExtraTip}"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<views:JsonEditor
|
||||||
|
x:Name="txtExtraXhttp"
|
||||||
|
Grid.Row="3"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
MinHeight="100"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
x:Name="gridTransportKcp"
|
||||||
|
ColumnDefinitions="300,Auto"
|
||||||
|
IsVisible="False"
|
||||||
|
RowDefinitions="Auto,Auto">
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TransportHeaderType2}" />
|
||||||
|
<ComboBox
|
||||||
|
x:Name="cmbHeaderTypeKcp"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="200"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="Seed" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtKcpSeed"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
x:Name="gridTransportGrpc"
|
||||||
|
ColumnDefinitions="300,Auto"
|
||||||
|
IsVisible="False"
|
||||||
|
RowDefinitions="Auto,Auto,Auto">
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TransportHeaderType4}" />
|
||||||
|
<ComboBox
|
||||||
|
x:Name="cmbHeaderTypeGrpc"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="200"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TransportRequestHostTip5}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostGrpc"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TransportPathTip4}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathGrpc"
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
x:Name="gridTransportWs"
|
||||||
|
ColumnDefinitions="300,Auto"
|
||||||
|
IsVisible="False"
|
||||||
|
RowDefinitions="Auto,Auto">
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbHost}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostWs"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathWs"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
x:Name="gridTransportHttpupgrade"
|
||||||
|
ColumnDefinitions="300,Auto"
|
||||||
|
IsVisible="False"
|
||||||
|
RowDefinitions="Auto,Auto">
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbHost}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostHttpupgrade"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathHttpupgrade"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}" />
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid
|
<Grid
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ public partial class AddServerWindow : WindowBase<AddServerViewModel>
|
||||||
Loaded += Window_Loaded;
|
Loaded += Window_Loaded;
|
||||||
btnCancel.Click += (s, e) => Close();
|
btnCancel.Click += (s, e) => Close();
|
||||||
cmbNetwork.SelectionChanged += CmbNetwork_SelectionChanged;
|
cmbNetwork.SelectionChanged += CmbNetwork_SelectionChanged;
|
||||||
|
cmbHeaderTypeRaw.SelectionChanged += CmbHeaderTypeRaw_SelectionChanged;
|
||||||
cmbStreamSecurity.SelectionChanged += CmbStreamSecurity_SelectionChanged;
|
cmbStreamSecurity.SelectionChanged += CmbStreamSecurity_SelectionChanged;
|
||||||
btnGUID.Click += btnGUID_Click;
|
btnGUID.Click += btnGUID_Click;
|
||||||
btnGUID5.Click += btnGUID_Click;
|
btnGUID5.Click += btnGUID_Click;
|
||||||
|
|
@ -24,6 +25,16 @@ public partial class AddServerWindow : WindowBase<AddServerViewModel>
|
||||||
|
|
||||||
cmbCoreType.ItemsSource = Global.CoreTypes.AppendEmpty();
|
cmbCoreType.ItemsSource = Global.CoreTypes.AppendEmpty();
|
||||||
cmbNetwork.ItemsSource = Global.Networks;
|
cmbNetwork.ItemsSource = Global.Networks;
|
||||||
|
|
||||||
|
cmbHeaderTypeRaw.ItemsSource = new List<string> { Global.None, Global.RawHeaderHttp };
|
||||||
|
|
||||||
|
var kcpHeaderTypes = new List<string> { Global.None };
|
||||||
|
kcpHeaderTypes.AddRange(Global.KcpHeaderTypes);
|
||||||
|
cmbHeaderTypeKcp.ItemsSource = kcpHeaderTypes;
|
||||||
|
|
||||||
|
cmbHeaderTypeXhttp.ItemsSource = Global.XhttpMode;
|
||||||
|
cmbHeaderTypeGrpc.ItemsSource = new List<string> { Global.GrpcGunMode, Global.GrpcMultiMode };
|
||||||
|
|
||||||
cmbFingerprint.ItemsSource = Global.Fingerprints;
|
cmbFingerprint.ItemsSource = Global.Fingerprints;
|
||||||
cmbFingerprint2.ItemsSource = Global.Fingerprints;
|
cmbFingerprint2.ItemsSource = Global.Fingerprints;
|
||||||
cmbAllowInsecure.ItemsSource = Global.AllowInsecure;
|
cmbAllowInsecure.ItemsSource = Global.AllowInsecure;
|
||||||
|
|
@ -201,10 +212,27 @@ public partial class AddServerWindow : WindowBase<AddServerViewModel>
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Network, v => v.cmbNetwork.SelectedValue).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.SelectedSource.Network, v => v.cmbNetwork.SelectedValue).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.HeaderType, v => v.cmbHeaderType.SelectedValue).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.RawHeaderType, v => v.cmbHeaderTypeRaw.SelectedValue).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.RequestHost, v => v.txtRequestHost.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostRaw.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Path, v => v.txtPath.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathRaw.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Extra, v => v.txtExtra.Text).DisposeWith(disposables);
|
|
||||||
|
this.Bind(ViewModel, vm => vm.KcpHeaderType, v => v.cmbHeaderTypeKcp.SelectedValue).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.KcpSeed, v => v.txtKcpSeed.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostWs.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathWs.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostHttpupgrade.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathHttpupgrade.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.XhttpMode, v => v.cmbHeaderTypeXhttp.SelectedValue).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostXhttp.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathXhttp.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.XhttpExtra, v => v.txtExtraXhttp.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.GrpcMode, v => v.cmbHeaderTypeGrpc.SelectedValue).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.GrpcAuthority, v => v.txtRequestHostGrpc.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.GrpcServiceName, v => v.txtPathGrpc.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.StreamSecurity, v => v.cmbStreamSecurity.SelectedValue).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.SelectedSource.StreamSecurity, v => v.cmbStreamSecurity.SelectedValue).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Sni, v => v.txtSNI.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.SelectedSource.Sni, v => v.txtSNI.Text).DisposeWith(disposables);
|
||||||
|
|
@ -253,8 +281,12 @@ public partial class AddServerWindow : WindowBase<AddServerViewModel>
|
||||||
|
|
||||||
private void CmbNetwork_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
private void CmbNetwork_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
{
|
{
|
||||||
SetHeaderType();
|
SetTransportGridVisibility();
|
||||||
SetTips();
|
}
|
||||||
|
|
||||||
|
private void CmbHeaderTypeRaw_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
|
{
|
||||||
|
SetRawHttpFieldsVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void CmbStreamSecurity_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
private void CmbStreamSecurity_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
|
|
@ -283,102 +315,60 @@ public partial class AddServerWindow : WindowBase<AddServerViewModel>
|
||||||
txtId5.Text = Utils.GetGuid();
|
txtId5.Text = Utils.GetGuid();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetHeaderType()
|
private void SetTransportGridVisibility()
|
||||||
{
|
{
|
||||||
var lstHeaderType = new List<string>();
|
var network = cmbNetwork.SelectedItem?.ToString();
|
||||||
|
|
||||||
var network = cmbNetwork.SelectedItem.ToString();
|
|
||||||
if (network.IsNullOrEmpty())
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
cmbHeaderType.ItemsSource = lstHeaderType;
|
|
||||||
cmbHeaderType.SelectedIndex = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (network == nameof(ETransport.tcp))
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
lstHeaderType.Add(Global.TcpHeaderHttp);
|
|
||||||
}
|
|
||||||
else if (network is nameof(ETransport.kcp) or nameof(ETransport.quic))
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
lstHeaderType.AddRange(Global.KcpHeaderTypes);
|
|
||||||
}
|
|
||||||
else if (network is nameof(ETransport.xhttp))
|
|
||||||
{
|
|
||||||
lstHeaderType.AddRange(Global.XhttpMode);
|
|
||||||
}
|
|
||||||
else if (network == nameof(ETransport.grpc))
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.GrpcGunMode);
|
|
||||||
lstHeaderType.Add(Global.GrpcMultiMode);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
}
|
|
||||||
cmbHeaderType.ItemsSource = lstHeaderType;
|
|
||||||
cmbHeaderType.SelectedIndex = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void SetTips()
|
|
||||||
{
|
|
||||||
var network = cmbNetwork.SelectedItem.ToString();
|
|
||||||
if (network.IsNullOrEmpty())
|
if (network.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
network = Global.DefaultNetwork;
|
network = Global.DefaultNetwork;
|
||||||
}
|
}
|
||||||
labHeaderType.IsVisible = true;
|
|
||||||
btnExtra.IsVisible = false;
|
gridTransportRaw.IsVisible = false;
|
||||||
tipRequestHost.Text =
|
gridTransportKcp.IsVisible = false;
|
||||||
tipPath.Text =
|
gridTransportWs.IsVisible = false;
|
||||||
tipHeaderType.Text = string.Empty;
|
gridTransportHttpupgrade.IsVisible = false;
|
||||||
|
gridTransportXhttp.IsVisible = false;
|
||||||
|
gridTransportGrpc.IsVisible = false;
|
||||||
|
|
||||||
switch (network)
|
switch (network)
|
||||||
{
|
{
|
||||||
case nameof(ETransport.tcp):
|
case nameof(ETransport.raw):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip1;
|
gridTransportRaw.IsVisible = true;
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip1;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.kcp):
|
case nameof(ETransport.kcp):
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip2;
|
gridTransportKcp.IsVisible = true;
|
||||||
tipPath.Text = ResUI.TransportPathTip5;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.ws):
|
case nameof(ETransport.ws):
|
||||||
|
gridTransportWs.IsVisible = true;
|
||||||
|
break;
|
||||||
case nameof(ETransport.httpupgrade):
|
case nameof(ETransport.httpupgrade):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip2;
|
gridTransportHttpupgrade.IsVisible = true;
|
||||||
tipPath.Text = ResUI.TransportPathTip1;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.xhttp):
|
case nameof(ETransport.xhttp):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip2;
|
gridTransportXhttp.IsVisible = true;
|
||||||
tipPath.Text = ResUI.TransportPathTip1;
|
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip5;
|
|
||||||
labHeaderType.IsVisible = false;
|
|
||||||
btnExtra.IsVisible = true;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.h2):
|
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip3;
|
|
||||||
tipPath.Text = ResUI.TransportPathTip2;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.quic):
|
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip4;
|
|
||||||
tipPath.Text = ResUI.TransportPathTip3;
|
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip3;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.grpc):
|
case nameof(ETransport.grpc):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip5;
|
gridTransportGrpc.IsVisible = true;
|
||||||
tipPath.Text = ResUI.TransportPathTip4;
|
break;
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip4;
|
default:
|
||||||
labHeaderType.IsVisible = false;
|
gridTransportRaw.IsVisible = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SetRawHttpFieldsVisibility();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SetRawHttpFieldsVisibility()
|
||||||
|
{
|
||||||
|
var network = cmbNetwork.SelectedItem?.ToString();
|
||||||
|
if (network.IsNullOrEmpty())
|
||||||
|
{
|
||||||
|
network = Global.DefaultNetwork;
|
||||||
|
}
|
||||||
|
|
||||||
|
var rawHeaderType = cmbHeaderTypeRaw.SelectedItem?.ToString();
|
||||||
|
var showRawHttpFields = network == nameof(ETransport.raw)
|
||||||
|
&& rawHeaderType == Global.RawHeaderHttp;
|
||||||
|
gridTransportRawHttp.IsVisible = showRawHttpFields;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -150,7 +150,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridVMess"
|
x:Name="gridVMess"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -234,7 +234,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridSs"
|
x:Name="gridSs"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -308,7 +308,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridSocks"
|
x:Name="gridSocks"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -353,7 +353,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridVLESS"
|
x:Name="gridVLESS"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -437,7 +437,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridTrojan"
|
x:Name="gridTrojan"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -497,7 +497,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridHysteria2"
|
x:Name="gridHysteria2"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -610,7 +610,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridTuic"
|
x:Name="gridTuic"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -670,7 +670,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridWireguard"
|
x:Name="gridWireguard"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -767,7 +767,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridAnytls"
|
x:Name="gridAnytls"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -796,7 +796,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridNaive"
|
x:Name="gridNaive"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -908,143 +908,356 @@
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
|
||||||
<RowDefinition Height="Auto" />
|
|
||||||
<RowDefinition Height="Auto" />
|
|
||||||
<RowDefinition Height="Auto" />
|
|
||||||
<RowDefinition Height="Auto" />
|
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<Grid.ColumnDefinitions>
|
|
||||||
<ColumnDefinition Width="300" />
|
|
||||||
<ColumnDefinition Width="Auto" />
|
|
||||||
<ColumnDefinition Width="Auto" />
|
|
||||||
</Grid.ColumnDefinitions>
|
|
||||||
|
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.ColumnSpan="2"
|
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
Style="{StaticResource ModuleTitle}"
|
Style="{StaticResource ModuleTitle}"
|
||||||
Text="{x:Static resx:ResUI.GbTransport}" />
|
Text="{x:Static resx:ResUI.GbTransport}" />
|
||||||
|
|
||||||
<TextBlock
|
<Grid Grid.Row="1">
|
||||||
Grid.Row="1"
|
<Grid.ColumnDefinitions>
|
||||||
Grid.Column="0"
|
<ColumnDefinition Width="300" />
|
||||||
Margin="{StaticResource Margin4}"
|
<ColumnDefinition Width="Auto" />
|
||||||
VerticalAlignment="Center"
|
<ColumnDefinition Width="Auto" />
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
</Grid.ColumnDefinitions>
|
||||||
Text="{x:Static resx:ResUI.TbNetwork}" />
|
<TextBlock
|
||||||
<ComboBox
|
Grid.Column="0"
|
||||||
x:Name="cmbNetwork"
|
Margin="{StaticResource Margin4}"
|
||||||
Grid.Row="1"
|
VerticalAlignment="Center"
|
||||||
Grid.Column="1"
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
Width="200"
|
Text="{x:Static resx:ResUI.TbNetwork}" />
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
Style="{StaticResource DefComboBox}" />
|
|
||||||
<TextBlock
|
|
||||||
Grid.Row="1"
|
|
||||||
Grid.Column="2"
|
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
|
||||||
Text="{x:Static resx:ResUI.TipNetwork}" />
|
|
||||||
|
|
||||||
<TextBlock
|
|
||||||
x:Name="labHeaderType"
|
|
||||||
Grid.Row="2"
|
|
||||||
Grid.Column="0"
|
|
||||||
Margin="{StaticResource Margin4}"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
|
||||||
Text="{x:Static resx:ResUI.TbHeaderType}" />
|
|
||||||
<StackPanel
|
|
||||||
Grid.Row="2"
|
|
||||||
Grid.Column="1"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Orientation="Horizontal">
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
x:Name="cmbHeaderType"
|
x:Name="cmbNetwork"
|
||||||
|
Grid.Column="1"
|
||||||
Width="200"
|
Width="200"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
Style="{StaticResource DefComboBox}" />
|
Style="{StaticResource DefComboBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TipNetwork}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
<materialDesign:PopupBox
|
<Grid Grid.Row="2">
|
||||||
x:Name="popExtra"
|
<Grid x:Name="gridTransportRaw" Visibility="Collapsed">
|
||||||
HorizontalAlignment="Right"
|
<Grid.RowDefinitions>
|
||||||
StaysOpen="True"
|
<RowDefinition Height="Auto" />
|
||||||
Style="{StaticResource MaterialDesignToolForegroundPopupBox}">
|
<RowDefinition Height="Auto" />
|
||||||
<StackPanel>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<Grid Grid.Row="0">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
<TextBlock
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
Text="{x:Static resx:ResUI.TransportExtraTip}" />
|
Text="{x:Static resx:ResUI.TransportHeaderType1}" />
|
||||||
<TextBox
|
<ComboBox
|
||||||
x:Name="txtExtra"
|
x:Name="cmbHeaderTypeRaw"
|
||||||
Width="400"
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="200"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefComboBox}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
x:Name="gridTransportRawHttp"
|
||||||
|
Grid.Row="1"
|
||||||
|
Visibility="Collapsed">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
AcceptsReturn="True"
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
MinLines="6"
|
Text="{x:Static resx:ResUI.TbCamouflageDomain}" />
|
||||||
Style="{StaticResource MyOutlinedTextBox}"
|
<TextBox
|
||||||
TextWrapping="Wrap" />
|
x:Name="txtRequestHostRaw"
|
||||||
</StackPanel>
|
Grid.Row="0"
|
||||||
</materialDesign:PopupBox>
|
Grid.Column="1"
|
||||||
</StackPanel>
|
Width="400"
|
||||||
<TextBlock
|
Margin="{StaticResource Margin4}"
|
||||||
x:Name="tipHeaderType"
|
Style="{StaticResource DefTextBox}" />
|
||||||
Grid.Row="2"
|
<TextBlock
|
||||||
Grid.Column="2"
|
Grid.Row="1"
|
||||||
Margin="{StaticResource Margin4}"
|
Grid.Column="0"
|
||||||
VerticalAlignment="Center"
|
Margin="{StaticResource Margin4}"
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
VerticalAlignment="Center"
|
||||||
Text="{x:Static resx:ResUI.TbHeaderType}" />
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathRaw"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
<TextBlock
|
<Grid x:Name="gridTransportXhttp" Visibility="Collapsed">
|
||||||
Grid.Row="3"
|
<Grid.ColumnDefinitions>
|
||||||
Grid.Column="0"
|
<ColumnDefinition Width="300" />
|
||||||
Margin="{StaticResource Margin4}"
|
<ColumnDefinition Width="Auto" />
|
||||||
VerticalAlignment="Center"
|
</Grid.ColumnDefinitions>
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
<Grid.RowDefinitions>
|
||||||
Text="{x:Static resx:ResUI.TbRequestHost}" />
|
<RowDefinition Height="Auto" />
|
||||||
<TextBox
|
<RowDefinition Height="Auto" />
|
||||||
x:Name="txtRequestHost"
|
<RowDefinition Height="Auto" />
|
||||||
Grid.Row="3"
|
<RowDefinition Height="Auto" />
|
||||||
Grid.Column="1"
|
</Grid.RowDefinitions>
|
||||||
Width="400"
|
<TextBlock
|
||||||
Margin="{StaticResource Margin4}"
|
Grid.Row="0"
|
||||||
Style="{StaticResource DefTextBox}" />
|
Grid.Column="0"
|
||||||
<TextBlock
|
Margin="{StaticResource Margin4}"
|
||||||
x:Name="tipRequestHost"
|
VerticalAlignment="Center"
|
||||||
Grid.Row="3"
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
Grid.Column="2"
|
Text="{x:Static resx:ResUI.TransportHeaderType5}" />
|
||||||
Margin="{StaticResource Margin4}"
|
<ComboBox
|
||||||
VerticalAlignment="Center"
|
x:Name="cmbHeaderTypeXhttp"
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
Grid.Row="0"
|
||||||
Text="{x:Static resx:ResUI.TbRequestHost}" />
|
Grid.Column="1"
|
||||||
|
Width="200"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefComboBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbHost}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostXhttp"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathXhttp"
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="3"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TransportExtraTip}"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtExtraXhttp"
|
||||||
|
Grid.Row="3"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
AcceptsReturn="True"
|
||||||
|
MinLines="6"
|
||||||
|
Style="{StaticResource MyOutlinedTextBox}"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
<TextBlock
|
<Grid x:Name="gridTransportKcp" Visibility="Collapsed">
|
||||||
Grid.Row="4"
|
<Grid.ColumnDefinitions>
|
||||||
Grid.Column="0"
|
<ColumnDefinition Width="300" />
|
||||||
Margin="{StaticResource Margin4}"
|
<ColumnDefinition Width="Auto" />
|
||||||
VerticalAlignment="Center"
|
</Grid.ColumnDefinitions>
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
<Grid.RowDefinitions>
|
||||||
Text="{x:Static resx:ResUI.TbPath}" />
|
<RowDefinition Height="Auto" />
|
||||||
<TextBox
|
<RowDefinition Height="Auto" />
|
||||||
x:Name="txtPath"
|
</Grid.RowDefinitions>
|
||||||
Grid.Row="4"
|
<TextBlock
|
||||||
Grid.Column="1"
|
Grid.Row="0"
|
||||||
Width="400"
|
Grid.Column="0"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
Style="{StaticResource DefTextBox}" />
|
VerticalAlignment="Center"
|
||||||
<TextBlock
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
x:Name="tipPath"
|
Text="{x:Static resx:ResUI.TransportHeaderType2}" />
|
||||||
Grid.Row="4"
|
<ComboBox
|
||||||
Grid.Column="2"
|
x:Name="cmbHeaderTypeKcp"
|
||||||
Margin="{StaticResource Margin4}"
|
Grid.Row="0"
|
||||||
VerticalAlignment="Center"
|
Grid.Column="1"
|
||||||
Style="{StaticResource ToolbarTextBlock}"
|
Width="200"
|
||||||
Text="{x:Static resx:ResUI.TbPath}" />
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefComboBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="Seed" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtKcpSeed"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid x:Name="gridTransportGrpc" Visibility="Collapsed">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TransportHeaderType4}" />
|
||||||
|
<ComboBox
|
||||||
|
x:Name="cmbHeaderTypeGrpc"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="200"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefComboBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TransportRequestHostTip5}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostGrpc"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TransportPathTip4}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathGrpc"
|
||||||
|
Grid.Row="2"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid x:Name="gridTransportWs" Visibility="Collapsed">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbHost}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostWs"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathWs"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid x:Name="gridTransportHttpupgrade" Visibility="Collapsed">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbHost}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtRequestHostHttpupgrade"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{StaticResource ToolbarTextBlock}"
|
||||||
|
Text="{x:Static resx:ResUI.TbPath}" />
|
||||||
|
<TextBox
|
||||||
|
x:Name="txtPathHttpupgrade"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="400"
|
||||||
|
Margin="{StaticResource Margin4}"
|
||||||
|
Style="{StaticResource DefTextBox}" />
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid x:Name="gridFinalmask" Grid.Row="5">
|
<Grid x:Name="gridFinalmask" Grid.Row="5">
|
||||||
|
|
@ -1118,7 +1331,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridTlsMore"
|
x:Name="gridTlsMore"
|
||||||
Grid.Row="8"
|
Grid.Row="8"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
@ -1307,7 +1520,7 @@
|
||||||
<Grid
|
<Grid
|
||||||
x:Name="gridRealityMore"
|
x:Name="gridRealityMore"
|
||||||
Grid.Row="8"
|
Grid.Row="8"
|
||||||
Visibility="Hidden">
|
Visibility="Collapsed">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ public partial class AddServerWindow
|
||||||
Owner = Application.Current.MainWindow;
|
Owner = Application.Current.MainWindow;
|
||||||
Loaded += Window_Loaded;
|
Loaded += Window_Loaded;
|
||||||
cmbNetwork.SelectionChanged += CmbNetwork_SelectionChanged;
|
cmbNetwork.SelectionChanged += CmbNetwork_SelectionChanged;
|
||||||
|
cmbHeaderTypeRaw.SelectionChanged += CmbHeaderTypeRaw_SelectionChanged;
|
||||||
cmbStreamSecurity.SelectionChanged += CmbStreamSecurity_SelectionChanged;
|
cmbStreamSecurity.SelectionChanged += CmbStreamSecurity_SelectionChanged;
|
||||||
btnGUID.Click += btnGUID_Click;
|
btnGUID.Click += btnGUID_Click;
|
||||||
btnGUID5.Click += btnGUID_Click;
|
btnGUID5.Click += btnGUID_Click;
|
||||||
|
|
@ -19,6 +20,20 @@ public partial class AddServerWindow
|
||||||
|
|
||||||
cmbCoreType.ItemsSource = Global.CoreTypes.AppendEmpty();
|
cmbCoreType.ItemsSource = Global.CoreTypes.AppendEmpty();
|
||||||
cmbNetwork.ItemsSource = Global.Networks;
|
cmbNetwork.ItemsSource = Global.Networks;
|
||||||
|
if (ViewModel.SelectedSource.Network.IsNullOrEmpty() || !Global.Networks.Contains(ViewModel.SelectedSource.Network))
|
||||||
|
{
|
||||||
|
ViewModel.SelectedSource.Network = Global.DefaultNetwork;
|
||||||
|
}
|
||||||
|
|
||||||
|
cmbHeaderTypeRaw.ItemsSource = new List<string> { Global.None, Global.RawHeaderHttp };
|
||||||
|
|
||||||
|
var kcpHeaderTypes = new List<string> { Global.None };
|
||||||
|
kcpHeaderTypes.AddRange(Global.KcpHeaderTypes);
|
||||||
|
cmbHeaderTypeKcp.ItemsSource = kcpHeaderTypes;
|
||||||
|
|
||||||
|
cmbHeaderTypeXhttp.ItemsSource = Global.XhttpMode;
|
||||||
|
cmbHeaderTypeGrpc.ItemsSource = new List<string> { Global.GrpcGunMode, Global.GrpcMultiMode };
|
||||||
|
|
||||||
cmbFingerprint.ItemsSource = Global.Fingerprints;
|
cmbFingerprint.ItemsSource = Global.Fingerprints;
|
||||||
cmbFingerprint2.ItemsSource = Global.Fingerprints;
|
cmbFingerprint2.ItemsSource = Global.Fingerprints;
|
||||||
cmbAllowInsecure.ItemsSource = Global.AllowInsecure;
|
cmbAllowInsecure.ItemsSource = Global.AllowInsecure;
|
||||||
|
|
@ -114,7 +129,7 @@ public partial class AddServerWindow
|
||||||
}
|
}
|
||||||
cmbStreamSecurity.ItemsSource = lstStreamSecurity;
|
cmbStreamSecurity.ItemsSource = lstStreamSecurity;
|
||||||
|
|
||||||
gridTlsMore.Visibility = Visibility.Hidden;
|
gridTlsMore.Visibility = Visibility.Collapsed;
|
||||||
|
|
||||||
this.WhenActivated(disposables =>
|
this.WhenActivated(disposables =>
|
||||||
{
|
{
|
||||||
|
|
@ -195,10 +210,27 @@ public partial class AddServerWindow
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Network, v => v.cmbNetwork.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.SelectedSource.Network, v => v.cmbNetwork.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.HeaderType, v => v.cmbHeaderType.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.RawHeaderType, v => v.cmbHeaderTypeRaw.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.RequestHost, v => v.txtRequestHost.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostRaw.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Path, v => v.txtPath.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathRaw.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Extra, v => v.txtExtra.Text).DisposeWith(disposables);
|
|
||||||
|
this.Bind(ViewModel, vm => vm.KcpHeaderType, v => v.cmbHeaderTypeKcp.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.KcpSeed, v => v.txtKcpSeed.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostWs.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathWs.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostHttpupgrade.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathHttpupgrade.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.XhttpMode, v => v.cmbHeaderTypeXhttp.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Host, v => v.txtRequestHostXhttp.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.Path, v => v.txtPathXhttp.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.XhttpExtra, v => v.txtExtraXhttp.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
|
this.Bind(ViewModel, vm => vm.GrpcMode, v => v.cmbHeaderTypeGrpc.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.GrpcAuthority, v => v.txtRequestHostGrpc.Text).DisposeWith(disposables);
|
||||||
|
this.Bind(ViewModel, vm => vm.GrpcServiceName, v => v.txtPathGrpc.Text).DisposeWith(disposables);
|
||||||
|
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.StreamSecurity, v => v.cmbStreamSecurity.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.SelectedSource.StreamSecurity, v => v.cmbStreamSecurity.Text).DisposeWith(disposables);
|
||||||
this.Bind(ViewModel, vm => vm.SelectedSource.Sni, v => v.txtSNI.Text).DisposeWith(disposables);
|
this.Bind(ViewModel, vm => vm.SelectedSource.Sni, v => v.txtSNI.Text).DisposeWith(disposables);
|
||||||
|
|
@ -249,8 +281,12 @@ public partial class AddServerWindow
|
||||||
|
|
||||||
private void CmbNetwork_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
private void CmbNetwork_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||||
{
|
{
|
||||||
SetHeaderType();
|
SetTransportGridVisibility();
|
||||||
SetTips();
|
}
|
||||||
|
|
||||||
|
private void CmbHeaderTypeRaw_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||||
|
{
|
||||||
|
SetRawHttpFieldsVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void CmbStreamSecurity_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
private void CmbStreamSecurity_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||||
|
|
@ -259,17 +295,17 @@ public partial class AddServerWindow
|
||||||
if (security == Global.StreamSecurityReality)
|
if (security == Global.StreamSecurityReality)
|
||||||
{
|
{
|
||||||
gridRealityMore.Visibility = Visibility.Visible;
|
gridRealityMore.Visibility = Visibility.Visible;
|
||||||
gridTlsMore.Visibility = Visibility.Hidden;
|
gridTlsMore.Visibility = Visibility.Collapsed;
|
||||||
}
|
}
|
||||||
else if (security == Global.StreamSecurity)
|
else if (security == Global.StreamSecurity)
|
||||||
{
|
{
|
||||||
gridRealityMore.Visibility = Visibility.Hidden;
|
gridRealityMore.Visibility = Visibility.Collapsed;
|
||||||
gridTlsMore.Visibility = Visibility.Visible;
|
gridTlsMore.Visibility = Visibility.Visible;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
gridRealityMore.Visibility = Visibility.Hidden;
|
gridRealityMore.Visibility = Visibility.Collapsed;
|
||||||
gridTlsMore.Visibility = Visibility.Hidden;
|
gridTlsMore.Visibility = Visibility.Collapsed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -279,102 +315,62 @@ public partial class AddServerWindow
|
||||||
txtId5.Text = Utils.GetGuid();
|
txtId5.Text = Utils.GetGuid();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetHeaderType()
|
private void SetTransportGridVisibility()
|
||||||
{
|
{
|
||||||
var lstHeaderType = new List<string>();
|
var network = cmbNetwork.SelectedItem?.ToString();
|
||||||
|
|
||||||
var network = cmbNetwork.SelectedItem.ToString();
|
|
||||||
if (network.IsNullOrEmpty())
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
cmbHeaderType.ItemsSource = lstHeaderType;
|
|
||||||
cmbHeaderType.SelectedIndex = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (network == nameof(ETransport.tcp))
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
lstHeaderType.Add(Global.TcpHeaderHttp);
|
|
||||||
}
|
|
||||||
else if (network is nameof(ETransport.kcp) or nameof(ETransport.quic))
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
lstHeaderType.AddRange(Global.KcpHeaderTypes);
|
|
||||||
}
|
|
||||||
else if (network is nameof(ETransport.xhttp))
|
|
||||||
{
|
|
||||||
lstHeaderType.AddRange(Global.XhttpMode);
|
|
||||||
}
|
|
||||||
else if (network == nameof(ETransport.grpc))
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.GrpcGunMode);
|
|
||||||
lstHeaderType.Add(Global.GrpcMultiMode);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
lstHeaderType.Add(Global.None);
|
|
||||||
}
|
|
||||||
cmbHeaderType.ItemsSource = lstHeaderType;
|
|
||||||
cmbHeaderType.SelectedIndex = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void SetTips()
|
|
||||||
{
|
|
||||||
var network = cmbNetwork.SelectedItem.ToString();
|
|
||||||
if (network.IsNullOrEmpty())
|
if (network.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
network = Global.DefaultNetwork;
|
network = Global.DefaultNetwork;
|
||||||
}
|
}
|
||||||
labHeaderType.Visibility = Visibility.Visible;
|
|
||||||
popExtra.Visibility = Visibility.Hidden;
|
gridTransportRaw.Visibility = Visibility.Collapsed;
|
||||||
tipRequestHost.Text =
|
gridTransportKcp.Visibility = Visibility.Collapsed;
|
||||||
tipPath.Text =
|
gridTransportWs.Visibility = Visibility.Collapsed;
|
||||||
tipHeaderType.Text = string.Empty;
|
gridTransportHttpupgrade.Visibility = Visibility.Collapsed;
|
||||||
|
gridTransportXhttp.Visibility = Visibility.Collapsed;
|
||||||
|
gridTransportGrpc.Visibility = Visibility.Collapsed;
|
||||||
|
|
||||||
switch (network)
|
switch (network)
|
||||||
{
|
{
|
||||||
case nameof(ETransport.tcp):
|
case nameof(ETransport.raw):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip1;
|
gridTransportRaw.Visibility = Visibility.Visible;
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip1;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.kcp):
|
case nameof(ETransport.kcp):
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip2;
|
gridTransportKcp.Visibility = Visibility.Visible;
|
||||||
tipPath.Text = ResUI.TransportPathTip5;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.ws):
|
case nameof(ETransport.ws):
|
||||||
|
gridTransportWs.Visibility = Visibility.Visible;
|
||||||
|
break;
|
||||||
case nameof(ETransport.httpupgrade):
|
case nameof(ETransport.httpupgrade):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip2;
|
gridTransportHttpupgrade.Visibility = Visibility.Visible;
|
||||||
tipPath.Text = ResUI.TransportPathTip1;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.xhttp):
|
case nameof(ETransport.xhttp):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip2;
|
gridTransportXhttp.Visibility = Visibility.Visible;
|
||||||
tipPath.Text = ResUI.TransportPathTip1;
|
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip5;
|
|
||||||
labHeaderType.Visibility = Visibility.Hidden;
|
|
||||||
popExtra.Visibility = Visibility.Visible;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case nameof(ETransport.h2):
|
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip3;
|
|
||||||
tipPath.Text = ResUI.TransportPathTip2;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.quic):
|
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip4;
|
|
||||||
tipPath.Text = ResUI.TransportPathTip3;
|
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip3;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case nameof(ETransport.grpc):
|
case nameof(ETransport.grpc):
|
||||||
tipRequestHost.Text = ResUI.TransportRequestHostTip5;
|
gridTransportGrpc.Visibility = Visibility.Visible;
|
||||||
tipPath.Text = ResUI.TransportPathTip4;
|
break;
|
||||||
tipHeaderType.Text = ResUI.TransportHeaderTypeTip4;
|
default:
|
||||||
labHeaderType.Visibility = Visibility.Hidden;
|
gridTransportRaw.Visibility = Visibility.Visible;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SetRawHttpFieldsVisibility();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SetRawHttpFieldsVisibility()
|
||||||
|
{
|
||||||
|
var network = cmbNetwork.SelectedItem?.ToString();
|
||||||
|
if (network.IsNullOrEmpty())
|
||||||
|
{
|
||||||
|
network = Global.DefaultNetwork;
|
||||||
|
}
|
||||||
|
|
||||||
|
var rawHeaderType = cmbHeaderTypeRaw.SelectedItem?.ToString();
|
||||||
|
var showRawHttpFields = network == nameof(ETransport.raw)
|
||||||
|
&& rawHeaderType == Global.RawHeaderHttp;
|
||||||
|
gridTransportRawHttp.Visibility = showRawHttpFields
|
||||||
|
? Visibility.Visible
|
||||||
|
: Visibility.Collapsed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue