Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package all
 
import (
    // The following are necessary as they register handlers in their init functions.
 
    // Mandatory features. Can't remove unless there are replacements.
    _ "github.com/v2fly/v2ray-core/v5/app/dispatcher"
    _ "github.com/v2fly/v2ray-core/v5/app/proxyman/inbound"
    _ "github.com/v2fly/v2ray-core/v5/app/proxyman/outbound"
 
    // Default commander and all its services. This is an optional feature.
    _ "github.com/v2fly/v2ray-core/v5/app/commander"
    _ "github.com/v2fly/v2ray-core/v5/app/log/command"
    _ "github.com/v2fly/v2ray-core/v5/app/proxyman/command"
    _ "github.com/v2fly/v2ray-core/v5/app/stats/command"
 
    // Developer preview services
    _ "github.com/v2fly/v2ray-core/v5/app/instman/command"
    _ "github.com/v2fly/v2ray-core/v5/app/observatory/command"
 
    // Other optional features.
    _ "github.com/v2fly/v2ray-core/v5/app/dns"
    _ "github.com/v2fly/v2ray-core/v5/app/dns/fakedns"
    _ "github.com/v2fly/v2ray-core/v5/app/log"
    _ "github.com/v2fly/v2ray-core/v5/app/policy"
    _ "github.com/v2fly/v2ray-core/v5/app/reverse"
    _ "github.com/v2fly/v2ray-core/v5/app/router"
    _ "github.com/v2fly/v2ray-core/v5/app/stats"
 
    // Fix dependency cycle caused by core import in internet package
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/tagged/taggedimpl"
 
    // Developer preview features
    _ "github.com/v2fly/v2ray-core/v5/app/instman"
    _ "github.com/v2fly/v2ray-core/v5/app/observatory"
    _ "github.com/v2fly/v2ray-core/v5/app/restfulapi"
 
    // Inbound and outbound proxies.
    _ "github.com/v2fly/v2ray-core/v5/proxy/blackhole"
    _ "github.com/v2fly/v2ray-core/v5/proxy/dns"
    _ "github.com/v2fly/v2ray-core/v5/proxy/dokodemo"
    _ "github.com/v2fly/v2ray-core/v5/proxy/freedom"
    _ "github.com/v2fly/v2ray-core/v5/proxy/http"
    _ "github.com/v2fly/v2ray-core/v5/proxy/shadowsocks"
    _ "github.com/v2fly/v2ray-core/v5/proxy/socks"
    _ "github.com/v2fly/v2ray-core/v5/proxy/trojan"
    _ "github.com/v2fly/v2ray-core/v5/proxy/vless/inbound"
    _ "github.com/v2fly/v2ray-core/v5/proxy/vless/outbound"
    _ "github.com/v2fly/v2ray-core/v5/proxy/vmess/inbound"
    _ "github.com/v2fly/v2ray-core/v5/proxy/vmess/outbound"
 
    // Developer preview proxies
    _ "github.com/v2fly/v2ray-core/v5/proxy/vlite/inbound"
    _ "github.com/v2fly/v2ray-core/v5/proxy/vlite/outbound"
 
    // Transports
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/domainsocket"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/grpc"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/http"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/kcp"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/quic"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/tcp"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/tls"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/udp"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/websocket"
 
    // Transport headers
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/http"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/noop"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/srtp"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/tls"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/utp"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/wechat"
    _ "github.com/v2fly/v2ray-core/v5/transport/internet/headers/wireguard"
 
    // Geo loaders
    _ "github.com/v2fly/v2ray-core/v5/infra/conf/geodata/memconservative"
    _ "github.com/v2fly/v2ray-core/v5/infra/conf/geodata/standard"
 
    // JSON, TOML, YAML config support. (jsonv4) This disable selective compile
    _ "github.com/v2fly/v2ray-core/v5/main/formats"
 
    // commands
    _ "github.com/v2fly/v2ray-core/v5/main/commands/all"
 
    // engineering commands
    _ "github.com/v2fly/v2ray-core/v5/main/commands/all/engineering"
 
    // Commands that rely on jsonv4 format This disable selective compile
    _ "github.com/v2fly/v2ray-core/v5/main/commands/all/api/jsonv4"
    _ "github.com/v2fly/v2ray-core/v5/main/commands/all/jsonv4"
 
    // V5 version of json configure file parser
    _ "github.com/v2fly/v2ray-core/v5/infra/conf/v5cfg"
 
    // Simplified config
    _ "github.com/v2fly/v2ray-core/v5/proxy/http/simplified"
    _ "github.com/v2fly/v2ray-core/v5/proxy/shadowsocks/simplified"
    _ "github.com/v2fly/v2ray-core/v5/proxy/socks/simplified"
    _ "github.com/v2fly/v2ray-core/v5/proxy/trojan/simplified"
)