mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-19 09:49:45 +05:00
sinb-box mux add padding option
https://github.com/2dust/v2rayN/issues/5544
This commit is contained in:
@@ -702,6 +702,7 @@ namespace ServiceLib.Handler.CoreConfig
|
|||||||
enabled = true,
|
enabled = true,
|
||||||
protocol = _config.mux4SboxItem.protocol,
|
protocol = _config.mux4SboxItem.protocol,
|
||||||
max_connections = _config.mux4SboxItem.max_connections,
|
max_connections = _config.mux4SboxItem.max_connections,
|
||||||
|
padding = _config.mux4SboxItem.padding,
|
||||||
};
|
};
|
||||||
outbound.multiplex = mux;
|
outbound.multiplex = mux;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -202,6 +202,7 @@
|
|||||||
{
|
{
|
||||||
public string protocol { get; set; }
|
public string protocol { get; set; }
|
||||||
public int max_connections { get; set; }
|
public int max_connections { get; set; }
|
||||||
|
public bool? padding { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
|
|||||||
@@ -150,6 +150,7 @@
|
|||||||
public bool enabled { get; set; }
|
public bool enabled { get; set; }
|
||||||
public string protocol { get; set; }
|
public string protocol { get; set; }
|
||||||
public int max_connections { get; set; }
|
public int max_connections { get; set; }
|
||||||
|
public bool? padding { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Utls4Sbox
|
public class Utls4Sbox
|
||||||
|
|||||||
Reference in New Issue
Block a user