proxy.go 395 B

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