remove connectionReuse

This commit is contained in:
ChsBuffer
2020-12-16 10:50:05 +08:00
parent a3e8826105
commit 41fdf94a16
2 changed files with 0 additions and 5 deletions

View File

@@ -195,8 +195,6 @@ namespace Netch.Servers.VMess.Models
public class TcpSettings
{
public bool connectionReuse { get; set; }
public Header header { get; set; }
}
@@ -257,8 +255,6 @@ namespace Netch.Servers.VMess.Models
public class WsSettings
{
public bool connectionReuse { get; set; }
public string path { get; set; }
public Headers headers { get; set; }

View File

@@ -309,7 +309,6 @@ namespace Netch.Servers.VMess.Utils
case "ws":
var wsSettings = new WsSettings
{
connectionReuse = true,
headers = !string.IsNullOrWhiteSpace(server.Host)
? new Headers {Host = server.Host}
: null,