12345678910111213141516171819202122232425 |
- 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"
- )
- const (
- TypeSelector = "selector"
- )
|