mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-05 04:47:41 +03:00
Minimal dependencies & Fixes
This commit is contained in:
parent
48809b0a99
commit
fa7811b49c
13 changed files with 237 additions and 191 deletions
|
@ -10,7 +10,7 @@ import (
|
|||
)
|
||||
|
||||
func FetchMethod(method string, password string) (shadowsocks.Method, error) {
|
||||
if method == "none" {
|
||||
if method == "none" || method == "plain" || method == "dummy" {
|
||||
return shadowsocks.NewNone(), nil
|
||||
} else if common.Contains(shadowstream.List, method) {
|
||||
return shadowstream.New(method, nil, password)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue