From 3b63a3d3080bd88b30834c2a509950c812e61fa9 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Thu, 5 Dec 2024 14:04:39 +0800 Subject: [PATCH] Fix https://github.com/2dust/v2rayN/issues/6216 --- v2rayN/ServiceLib/Models/V2rayConfig.cs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/v2rayN/ServiceLib/Models/V2rayConfig.cs b/v2rayN/ServiceLib/Models/V2rayConfig.cs index 725d616a..9a47c583 100644 --- a/v2rayN/ServiceLib/Models/V2rayConfig.cs +++ b/v2rayN/ServiceLib/Models/V2rayConfig.cs @@ -349,20 +349,20 @@ namespace ServiceLib.Models public string? path { get; set; } public string? host { get; set; } public string? mode { get; set; } - public string? scMaxEachPostBytes { get; set; } - public string? scMaxConcurrentPosts { get; set; } - public string? scMinPostsIntervalMs { get; set; } - public Xmux4Ray? xmux { get; set; } + public object? scMaxEachPostBytes { get; set; } + public object? scMaxConcurrentPosts { get; set; } + public object? scMinPostsIntervalMs { get; set; } + //public Xmux4Ray? xmux { get; set; } public object? extra { get; set; } } - public class Xmux4Ray - { - public int? maxConcurrency { get; set; } - public int? maxConnections { get; set; } - public int? cMaxReuseTimes { get; set; } - public int? cMaxLifetimeMs { get; set; } - } + //public class Xmux4Ray + //{ + // public object? maxConcurrency { get; set; } + // public object? maxConnections { get; set; } + // public object? cMaxReuseTimes { get; set; } + // public object? cMaxLifetimeMs { get; set; } + //} public class HttpSettings4Ray {