(method string, account api.ShadowsocksAccount)
| 66 | } |
| 67 | |
| 68 | func checkShadowsocks2022(method string, account api.ShadowsocksAccount) api.ShadowsocksAccount { |
| 69 | account.Password = common.EnsureBase64Password(account.Password, method) |
| 70 | |
| 71 | return account |
| 72 | } |
| 73 | |
| 74 | func isActiveInbound(inbound *Inbound, inbounds []string, settings api.ProxySettings) (api.Account, bool) { |
| 75 | if slices.Contains(inbounds, inbound.Tag) { |
no test coverage detected