mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-05 14:32:09 +00:00
fix kcp seed
This commit is contained in:
parent
ab4d34b6ac
commit
0713c0c667
2 changed files with 5 additions and 2 deletions
|
@ -551,7 +551,10 @@ namespace v2rayN.Handler
|
|||
{
|
||||
type = config.headerType()
|
||||
};
|
||||
kcpSettings.seed = config.path();
|
||||
if (!Utils.IsNullOrEmpty(config.path()))
|
||||
{
|
||||
kcpSettings.seed = config.path();
|
||||
}
|
||||
streamSettings.kcpSettings = kcpSettings;
|
||||
break;
|
||||
//ws
|
||||
|
|
|
@ -32,4 +32,4 @@ using System.Runtime.InteropServices;
|
|||
// 方法是按如下所示使用“*”:
|
||||
//[assembly: AssemblyVersion("1.0.*")]
|
||||
//[assembly: AssemblyVersion("1.0.0")]
|
||||
[assembly: AssemblyFileVersion("3.22")]
|
||||
[assembly: AssemblyFileVersion("3.23")]
|
||||
|
|
Loading…
Reference in a new issue