-
Notifications
You must be signed in to change notification settings - Fork 468
/
Config-mini.in
141 lines (104 loc) · 3.08 KB
/
Config-mini.in
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
menu "V2Ray Mini Configuration"
depends on PACKAGE_v2ray-core-mini
choice
prompt "JSON Config Support"
default PACKAGE_v2ray_mini_json_internal
config PACKAGE_v2ray_mini_json_v2ctl
bool "Load JSON from V2Ctl"
config PACKAGE_v2ray_mini_json_internal
bool "Load JSON Internally"
config PACKAGE_v2ray_mini_json_none
bool "None"
endchoice
config PACKAGE_v2ray_mini_exclude_v2ctl
bool "Exclude V2Ctl"
depends on PACKAGE_v2ray_mini_json_internal || PACKAGE_v2ray_mini_json_none
default y
config PACKAGE_v2ray_mini_exclude_assets
bool "Exclude geoip.dat & geosite.dat"
default y
config PACKAGE_v2ray_mini_compress_upx
bool "Compress executable files with UPX"
default y
config PACKAGE_v2ray_mini_custom_features
bool "Custom Features"
default n
menu "Features Configuration"
depends on PACKAGE_v2ray_mini_custom_features
config PACKAGE_v2ray_mini_without_dns
bool "Without Internal DNS Support"
default n
config PACKAGE_v2ray_mini_without_fakedns
bool "Without Fake DNS Support"
depends on !PACKAGE_v2ray_mini_without_dns
config PACKAGE_v2ray_mini_without_log
bool "Without Log Support"
default n
config PACKAGE_v2ray_mini_without_tls
bool "Without TLS Support"
default n
config PACKAGE_v2ray_mini_without_udp
bool "Without UDP Support"
default n
config PACKAGE_v2ray_mini_without_policy
bool "Without Local Policy Support"
default n
config PACKAGE_v2ray_mini_without_reverse
bool "Without Reverse Proxy Support"
default n
config PACKAGE_v2ray_mini_without_routing
bool "Without Internal Routing Support"
default n
config PACKAGE_v2ray_mini_without_statistics
bool "Without Statistics Support"
default n
config PACKAGE_v2ray_mini_without_blackhole_proto
bool "Without Blackhole Protocol"
default n
config PACKAGE_v2ray_mini_without_dns_proxy
bool "Without DNS Proxy"
default n
config PACKAGE_v2ray_mini_without_dokodemo_proto
bool "Without Dokodemo-door Protocol"
default n
config PACKAGE_v2ray_mini_without_freedom_proto
bool "Without Freedom Protocol"
default n
config PACKAGE_v2ray_mini_without_mtproto_proxy
bool "Without MTProto Proxy"
default n
config PACKAGE_v2ray_mini_without_http_proto
bool "Without HTTP Protocol"
default n
config PACKAGE_v2ray_mini_without_shadowsocks_proto
bool "Without Shadowsocks Protocol"
default n
config PACKAGE_v2ray_mini_without_socks_proto
bool "Without Socks Protocol"
default n
config PACKAGE_v2ray_mini_without_trojan_proto
bool "Without Trojan Protocol"
default n
config PACKAGE_v2ray_mini_without_vmess_proto
bool "Without VMess Protocol"
default n
config PACKAGE_v2ray_mini_without_tcp_trans
bool "Without TCP Transport"
default n
config PACKAGE_v2ray_mini_without_mkcp_trans
bool "Without mKCP Transport"
default n
config PACKAGE_v2ray_mini_without_websocket_trans
bool "Without WebSocket Transport"
default n
config PACKAGE_v2ray_mini_without_http2_trans
bool "Without HTTP/2 Transport"
default n
config PACKAGE_v2ray_mini_without_domain_socket_trans
bool "Without Domain Socket Transport"
default n
config PACKAGE_v2ray_mini_without_quic_trans
bool "Without QUIC Transport"
default n
endmenu
endmenu