1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-16 10:14:33 -04:00
v2fly/all.go

29 lines
936 B
Go
Raw Normal View History

2016-10-14 17:41:06 -04:00
package core
import (
// The following are necessary as they register handlers in their init functions.
_ "v2ray.com/core/app/dns"
2016-11-10 17:41:28 -05:00
_ "v2ray.com/core/app/proxy"
2016-10-14 17:41:06 -04:00
_ "v2ray.com/core/app/router"
_ "v2ray.com/core/proxy/blackhole"
_ "v2ray.com/core/proxy/dokodemo"
_ "v2ray.com/core/proxy/freedom"
_ "v2ray.com/core/proxy/http"
_ "v2ray.com/core/proxy/shadowsocks"
_ "v2ray.com/core/proxy/socks"
_ "v2ray.com/core/proxy/vmess/inbound"
_ "v2ray.com/core/proxy/vmess/outbound"
_ "v2ray.com/core/transport/internet/kcp"
_ "v2ray.com/core/transport/internet/tcp"
2016-10-15 18:45:35 -04:00
_ "v2ray.com/core/transport/internet/tls"
2016-10-14 17:41:06 -04:00
_ "v2ray.com/core/transport/internet/udp"
_ "v2ray.com/core/transport/internet/ws"
2016-11-02 17:26:21 -04:00
_ "v2ray.com/core/transport/internet/authenticators/http"
2016-10-14 17:41:06 -04:00
_ "v2ray.com/core/transport/internet/authenticators/noop"
_ "v2ray.com/core/transport/internet/authenticators/srtp"
_ "v2ray.com/core/transport/internet/authenticators/utp"
)