Add: fallback policy group

This commit is contained in:
Dreamacro
2018-09-26 00:34:15 +08:00
parent 3e68faecb2
commit 220e4f0608
4 changed files with 169 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import (
// Adapter Type
const (
Direct AdapterType = iota
Fallback
Reject
Selector
Shadowsocks
@ -38,6 +39,8 @@ func (at AdapterType) String() string {
switch at {
case Direct:
return "Direct"
case Fallback:
return "Fallback"
case Reject:
return "Reject"
case Selector: