proxy.go 331 B

123456789101112131415
  1. package constant
  2. const (
  3. TypeTun = "tun"
  4. TypeRedirect = "redirect"
  5. TypeTProxy = "tproxy"
  6. TypeDNS = "dns"
  7. TypeDirect = "direct"
  8. TypeBlock = "block"
  9. TypeSocks = "socks"
  10. TypeHTTP = "http"
  11. TypeMixed = "mixed"
  12. TypeShadowsocks = "shadowsocks"
  13. TypeVMess = "vmess"
  14. )