[Feat] add Pass type for support temporary skip rule set
This commit is contained in:
MetaCubeX
2022-03-27 23:44:51 +08:00
11 changed files with 67 additions and 21 deletions

View File

@ -14,6 +14,7 @@ const (
Direct AdapterType = iota
Reject
Compatible
Pass
Relay
Selector
@ -132,6 +133,8 @@ func (at AdapterType) String() string {
return "Reject"
case Compatible:
return "Compatible"
case Pass:
return "Pass"
case Shadowsocks:
return "Shadowsocks"
case ShadowsocksR: