sing-box/constant/proxy.go

20 lines
369 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-06-30 13:27:56 +00:00
)
2022-07-21 13:03:41 +00:00
const (
TypeSelector = "selector"
)