mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 14:44:42 -05:00
32 lines
732 B
Go
32 lines
732 B
Go
|
package constant
|
||
|
|
||
|
const (
|
||
|
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"
|
||
|
TypeVLESS = "vless"
|
||
|
TypeTUIC = "tuic"
|
||
|
TypeHysteria2 = "hysteria2"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
TypeSelector = "selector"
|
||
|
TypeURLTest = "urltest"
|
||
|
)
|