sing-box/constant/proxy.go

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