sing-box/constant/proxy.go

22 lines
424 B
Go
Raw Normal View History

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