pull/4811/head
2dust 2024-03-08 09:41:38 +08:00
parent 9232f1fa40
commit 63af5bae8a
2 changed files with 9 additions and 5 deletions

View File

@ -426,6 +426,10 @@ namespace v2rayN.Handler
transport.path = Utile.IsNullOrEmpty(node.path) ? null : node.path;
}
}
else
{
transport = null;
}
break;

View File

@ -15,7 +15,7 @@
public bool? disabled { get; set; }
public string level { get; set; }
public string output { get; set; }
public bool timestamp { get; set; }
public bool? timestamp { get; set; }
}
public class Dns4Sbox
@ -120,10 +120,10 @@
public int? mtu { get; set; }
public string? plugin { get; set; }
public string? plugin_opts { get; set; }
public Tls4Sbox tls { get; set; }
public Multiplex4Sbox multiplex { get; set; }
public Transport4Sbox transport { get; set; }
public HyObfs4Sbox obfs { get; set; }
public Tls4Sbox? tls { get; set; }
public Multiplex4Sbox? multiplex { get; set; }
public Transport4Sbox? transport { get; set; }
public HyObfs4Sbox? obfs { get; set; }
}
public class Tls4Sbox