mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-20 06:02:23 +00:00
remove connectionReuse
This commit is contained in:
parent
162b3ab29c
commit
3aeaadade6
2 changed files with 3 additions and 14 deletions
|
@ -625,7 +625,6 @@ namespace v2rayN.Handler
|
||||||
case "ws":
|
case "ws":
|
||||||
WsSettings wsSettings = new WsSettings
|
WsSettings wsSettings = new WsSettings
|
||||||
{
|
{
|
||||||
connectionReuse = true
|
|
||||||
};
|
};
|
||||||
|
|
||||||
string path = config.path();
|
string path = config.path();
|
||||||
|
@ -689,7 +688,6 @@ namespace v2rayN.Handler
|
||||||
{
|
{
|
||||||
TcpSettings tcpSettings = new TcpSettings
|
TcpSettings tcpSettings = new TcpSettings
|
||||||
{
|
{
|
||||||
connectionReuse = true,
|
|
||||||
header = new Header
|
header = new Header
|
||||||
{
|
{
|
||||||
type = config.headerType()
|
type = config.headerType()
|
||||||
|
|
|
@ -421,10 +421,6 @@ namespace v2rayN.Mode
|
||||||
|
|
||||||
public class TcpSettings
|
public class TcpSettings
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// 是否重用 TCP 连接
|
|
||||||
/// </summary>
|
|
||||||
public bool connectionReuse { get; set; }
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数据包头部伪装设置
|
/// 数据包头部伪装设置
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -489,11 +485,6 @@ namespace v2rayN.Mode
|
||||||
|
|
||||||
public class WsSettings
|
public class WsSettings
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
public bool connectionReuse { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in a new issue