sing-box/constant/proxy.go

29 lines
647 B
Go
Raw Normal View History

2022-06-30 13:27:56 +00:00
package constant
const (
2022-09-12 09:30:54 +00:00
TypeTun = "tun"
TypeRedirect = "redirect"
TypeTProxy = "tproxy"
TypeDirect = "direct"
TypeBlock = "block"
TypeDNS = "dns"
TypeSocks = "socks"
TypeHTTP = "http"
TypeMixed = "mixed"
TypeShadowsocks = "shadowsocks"
TypeVMess = "vmess"
TypeTrojan = "trojan"
TypeNaive = "naive"
TypeWireGuard = "wireguard"
TypeHysteria = "hysteria"
TypeTor = "tor"
TypeSSH = "ssh"
TypeShadowTLS = "shadowtls"
TypeShadowsocksR = "shadowsocksr"
2022-09-12 13:59:27 +00:00
TypeVLESS = "vless"
2022-06-30 13:27:56 +00:00
)
2022-07-21 13:03:41 +00:00
const (
TypeSelector = "selector"
)