From 8988dc32b9cc25a4f409311f928f4313c0c38ee1 Mon Sep 17 00:00:00 2001 From: Shelikhoo Date: Wed, 10 Jun 2020 11:15:28 +0800 Subject: [PATCH] Update Version --- core.go | 2 +- transport/internet/kcp/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core.go b/core.go index d11fc4834..62d87caab 100755 --- a/core.go +++ b/core.go @@ -19,7 +19,7 @@ import ( ) var ( - version = "4.23.4" + version = "4.24.0" build = "Custom" codename = "V2Fly, a community-driven edition of V2Ray." intro = "A unified platform for anti-censorship." diff --git a/transport/internet/kcp/config.go b/transport/internet/kcp/config.go index f206b9108..0abd12d54 100644 --- a/transport/internet/kcp/config.go +++ b/transport/internet/kcp/config.go @@ -63,7 +63,7 @@ func (c *Config) GetReadBufferSize() uint32 { // GetSecurity returns the security settings. func (c *Config) GetSecurity() (cipher.AEAD, error) { if c.Seed != nil { - fmt.Println("NewAEADAESGCMBasedOnSeed Used") + fmt.Println("=========NewAEADAESGCMBasedOnSeed Used============") return NewAEADAESGCMBasedOnSeed(c.Seed.Seed), nil } return NewSimpleAuthenticator(), nil