2022-06-30 21:27:56 +08:00
|
|
|
package constant
|
|
|
|
|
|
|
|
const (
|
2022-07-18 12:32:31 +08:00
|
|
|
TypeTun = "tun"
|
|
|
|
TypeRedirect = "redirect"
|
|
|
|
TypeTProxy = "tproxy"
|
2022-06-30 21:27:56 +08:00
|
|
|
TypeDirect = "direct"
|
2022-07-03 23:23:18 +08:00
|
|
|
TypeBlock = "block"
|
2022-07-23 09:15:47 +08:00
|
|
|
TypeDNS = "dns"
|
2022-06-30 21:27:56 +08:00
|
|
|
TypeSocks = "socks"
|
|
|
|
TypeHTTP = "http"
|
|
|
|
TypeMixed = "mixed"
|
|
|
|
TypeShadowsocks = "shadowsocks"
|
2022-07-18 12:32:31 +08:00
|
|
|
TypeVMess = "vmess"
|
2022-08-08 08:56:04 +08:00
|
|
|
TypeTrojan = "trojan"
|
2022-08-10 20:19:16 +08:00
|
|
|
TypeNaive = "naive"
|
2022-06-30 21:27:56 +08:00
|
|
|
)
|
2022-07-21 21:03:41 +08:00
|
|
|
|
|
|
|
const (
|
|
|
|
TypeSelector = "selector"
|
|
|
|
)
|