Browse Source

Merge pull request #50 from yuhan6665/master

Fix parser for shadowsocks cipher "none"
pull/2667/head
Kslr 4 years ago committed by GitHub
parent
commit
3a7784b3e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      infra/conf/shadowsocks.go

2
infra/conf/shadowsocks.go

@ -26,6 +26,8 @@ func cipherFromString(c string) shadowsocks.CipherType {
return shadowsocks.CipherType_AES_256_GCM
case "chacha20-poly1305", "aead_chacha20_poly1305", "chacha20-ietf-poly1305":
return shadowsocks.CipherType_CHACHA20_POLY1305
case "none", "plain":
return shadowsocks.CipherType_NONE
default:
return shadowsocks.CipherType_UNKNOWN
}

Loading…
Cancel
Save