sing-box/constant/proxy.go

26 lines
535 B
Go
Raw Normal View History

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"
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-08-16 23:46:05 +08:00
TypeWireGuard = "wireguard"
TypeHysteria = "hysteria"
2022-08-21 00:59:49 +08:00
TypeTor = "tor"
2022-08-21 19:36:08 +08:00
TypeSSH = "ssh"
2022-06-30 21:27:56 +08:00
)
2022-07-21 21:03:41 +08:00
const (
TypeSelector = "selector"
)