all.go 906 B

123456789101112131415161718192021222324252627
  1. package core
  2. import (
  3. // The following are necessary as they register handlers in their init functions.
  4. _ "v2ray.com/core/app/dns"
  5. _ "v2ray.com/core/app/router"
  6. _ "v2ray.com/core/proxy/blackhole"
  7. _ "v2ray.com/core/proxy/dokodemo"
  8. _ "v2ray.com/core/proxy/freedom"
  9. _ "v2ray.com/core/proxy/http"
  10. _ "v2ray.com/core/proxy/shadowsocks"
  11. _ "v2ray.com/core/proxy/socks"
  12. _ "v2ray.com/core/proxy/vmess/inbound"
  13. _ "v2ray.com/core/proxy/vmess/outbound"
  14. _ "v2ray.com/core/transport/internet/kcp"
  15. _ "v2ray.com/core/transport/internet/tcp"
  16. _ "v2ray.com/core/transport/internet/tls"
  17. _ "v2ray.com/core/transport/internet/udp"
  18. _ "v2ray.com/core/transport/internet/ws"
  19. _ "v2ray.com/core/transport/internet/authenticators/http"
  20. _ "v2ray.com/core/transport/internet/authenticators/noop"
  21. _ "v2ray.com/core/transport/internet/authenticators/srtp"
  22. _ "v2ray.com/core/transport/internet/authenticators/utp"
  23. )