1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-09 09:20:45 +00:00
v2fly/main/distro/all/all.go

50 lines
1.5 KiB
Go
Raw Normal View History

2016-12-16 22:38:58 +00:00
package all
import (
// The following are necessary as they register handlers in their init functions.
2018-02-11 22:28:42 +00:00
// Required features. Can't remove unless there is replacements.
_ "v2ray.com/core/app/dispatcher"
2018-02-11 22:28:42 +00:00
_ "v2ray.com/core/app/proxyman/inbound"
_ "v2ray.com/core/app/proxyman/outbound"
// Default commander and all its services.
_ "v2ray.com/core/app/commander"
2018-02-14 21:00:15 +00:00
_ "v2ray.com/core/app/log/command"
2018-02-11 22:28:42 +00:00
_ "v2ray.com/core/app/proxyman/command"
// Other optional features.
2017-12-19 22:55:09 +00:00
_ "v2ray.com/core/app/dns"
_ "v2ray.com/core/app/log"
_ "v2ray.com/core/app/policy"
2016-12-16 22:38:58 +00:00
_ "v2ray.com/core/app/router"
2018-02-11 22:28:42 +00:00
// Inbound and outbound proxies.
2016-12-16 22:38:58 +00:00
_ "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"
2018-02-11 22:28:42 +00:00
// Transports
2018-03-01 20:10:45 +00:00
_ "v2ray.com/core/transport/internet/http"
2016-12-16 22:38:58 +00:00
_ "v2ray.com/core/transport/internet/kcp"
_ "v2ray.com/core/transport/internet/tcp"
_ "v2ray.com/core/transport/internet/tls"
_ "v2ray.com/core/transport/internet/udp"
2016-12-22 23:30:46 +00:00
_ "v2ray.com/core/transport/internet/websocket"
2016-12-16 22:38:58 +00:00
2018-02-11 22:28:42 +00:00
// Transport headers
2016-12-16 22:38:58 +00:00
_ "v2ray.com/core/transport/internet/headers/http"
_ "v2ray.com/core/transport/internet/headers/noop"
_ "v2ray.com/core/transport/internet/headers/srtp"
_ "v2ray.com/core/transport/internet/headers/utp"
2017-01-03 21:46:22 +00:00
_ "v2ray.com/core/transport/internet/headers/wechat"
// JSON config format
_ "v2ray.com/core/main/json"
2016-12-16 22:38:58 +00:00
)