mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Update golang and v2ray
This commit is contained in:
parent
62584c32ce
commit
cac91f628b
8 changed files with 457 additions and 25 deletions
149
v2ray-core/Config.in
Normal file
149
v2ray-core/Config.in
Normal file
|
@ -0,0 +1,149 @@
|
|||
menu "V2Ray Configuration"
|
||||
depends on PACKAGE_v2ray-core
|
||||
|
||||
choice
|
||||
prompt "JSON Config Support"
|
||||
default V2RAY_JSON_V2CTL
|
||||
|
||||
config V2RAY_JSON_V2CTL
|
||||
bool "Load JSON from V2Ctl"
|
||||
|
||||
config V2RAY_JSON_INTERNAL
|
||||
bool "Load JSON Internally"
|
||||
|
||||
config V2RAY_JSON_NONE
|
||||
bool "None"
|
||||
|
||||
endchoice
|
||||
|
||||
config V2RAY_EXCLUDE_V2CTL
|
||||
bool "Exclude V2Ctl"
|
||||
depends on V2RAY_JSON_INTERNAL || V2RAY_JSON_NONE
|
||||
default n
|
||||
|
||||
config V2RAY_EXCLUDE_ASSETS
|
||||
bool "Exclude geoip.dat & geosite.dat"
|
||||
default n
|
||||
|
||||
config V2RAY_COMPRESS_UPX
|
||||
bool "Compress executable files with UPX"
|
||||
default n
|
||||
|
||||
choice
|
||||
prompt "Disable Features"
|
||||
default V2RAY_DISABLE_NONE
|
||||
|
||||
config V2RAY_DISABLE_NONE
|
||||
bool "None"
|
||||
|
||||
config V2RAY_DISABLE_CUSTOM
|
||||
bool "Custom"
|
||||
|
||||
endchoice
|
||||
|
||||
config V2RAY_DISABLE_DNS
|
||||
bool "Disable Internal DNS Support"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_LOG
|
||||
bool "Disable Log Support"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_POLICY
|
||||
bool "Disable Local Policy Support"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_REVERSE
|
||||
bool "Disable Reverse Proxy Support"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_ROUTING
|
||||
bool "Disable Internal Routing Support"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_STATISTICS
|
||||
bool "Disable Statistics Support"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_BLACKHOLE_PROTO
|
||||
bool "Disable Blackhole Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_DNS_PROXY
|
||||
bool "Disable DNS Proxy"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_DOKODEMO_PROTO
|
||||
bool "Disable Dokodemo-door Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_FREEDOM_PROTO
|
||||
bool "Disable Freedom Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_MTPROTO_PROXY
|
||||
bool "Disable MTProto Proxy"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_HTTP_PROTO
|
||||
bool "Disable HTTP Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_SHADOWSOCKS_PROTO
|
||||
bool "Disable Shadowsocks Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_SOCKS_PROTO
|
||||
bool "Disable Socks Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_VMESS_PROTO
|
||||
bool "Disable VMess Protocol"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_TCP_TRANS
|
||||
bool "Disable TCP Transport"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_MKCP_TRANS
|
||||
bool "Disable mKCP Transport"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_WEBSOCKET_TRANS
|
||||
bool "Disable WebSocket Transport"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_HTTP2_TRANS
|
||||
bool "Disable HTTP/2 Transport"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_DOMAIN_SOCKET_TRANS
|
||||
bool "Disable Domain Socket Transport"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
config V2RAY_DISABLE_QUIC_TRANS
|
||||
bool "Disable QUIC Transport"
|
||||
depends on V2RAY_DISABLE_CUSTOM
|
||||
default n
|
||||
|
||||
endmenu
|
Loading…
Add table
Add a link
Reference in a new issue