1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-24 12:56:22 -04:00

Update Version

This commit is contained in:
Shelikhoo 2020-06-10 11:15:28 +08:00
parent aece8a6a86
commit 8988dc32b9
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
2 changed files with 2 additions and 2 deletions

View File

@ -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."

View File

@ -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