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"
|
2022-07-03 15:23:18 +00:00
|
|
|
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"
|
2022-08-19 07:42:57 +00:00
|
|
|
TypeHysteria = "hysteria"
|
2022-08-20 16:59:49 +00:00
|
|
|
TypeTor = "tor"
|
2022-08-21 11:36:08 +00:00
|
|
|
TypeSSH = "ssh"
|
2022-08-31 06:21:53 +00:00
|
|
|
TypeShadowTLS = "shadowtls"
|
2022-06-30 13:27:56 +00:00
|
|
|
)
|
2022-07-21 13:03:41 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
TypeSelector = "selector"
|
|
|
|
)
|