lede/package/lean/xray/Config.in
2020-12-01 14:47:09 +08:00

129 lines
2.3 KiB
Plaintext

menu "Xray Configuration"
depends on PACKAGE_xray
choice
prompt "JSON Config Support"
default XRAY_JSON_INTERNAL
config XRAY_JSON_INTERNAL
bool "Load JSON Internally"
config XRAY_JSON_NONE
bool "None"
endchoice
config XRAY_COMPRESS_GOPROXY
bool "Compiling with GOPROXY proxy"
default n
config XRAY_EXCLUDE_ASSETS
bool "Exclude geoip.dat & geosite.dat"
default y
config XRAY_COMPRESS_UPX
bool "Compress executable files with UPX"
default y
config XRAY_CUSTOM_FEATURES
bool "Custom Features"
default n
menu "Features Configuration"
depends on XRAY_CUSTOM_FEATURES
config XRAY_WITHOUT_DNS
bool "Without Internal DNS Support"
default n
config XRAY_WITHOUT_LOG
bool "Without Log Support"
default n
config XRAY_WITHOUT_TLS
bool "Without TLS Support"
default n
config XRAY_WITHOUT_UDP
bool "Without UDP Support"
default n
config XRAY_WITHOUT_POLICY
bool "Without Local Policy Support"
default n
config XRAY_WITHOUT_REVERSE
bool "Without Reverse Proxy Support"
default n
config XRAY_WITHOUT_ROUTING
bool "Without Internal Routing Support"
default n
config XRAY_WITHOUT_STATISTICS
bool "Without Statistics Support"
default n
config XRAY_WITHOUT_BLACKHOLE_PROTO
bool "Without Blackhole Protocol"
default n
config XRAY_WITHOUT_DNS_PROXY
bool "Without DNS Proxy"
default n
config XRAY_WITHOUT_DOKODEMO_PROTO
bool "Without Dokodemo-door Protocol"
default n
config XRAY_WITHOUT_FREEDOM_PROTO
bool "Without Freedom Protocol"
default n
config XRAY_WITHOUT_MTPROTO_PROXY
bool "Without MTProto Proxy"
default n
config XRAY_WITHOUT_HTTP_PROTO
bool "Without HTTP Protocol"
default n
config XRAY_WITHOUT_SHADOWSOCKS_PROTO
bool "Without Shadowsocks Protocol"
default n
config XRAY_WITHOUT_SOCKS_PROTO
bool "Without Socks Protocol"
default n
config XRAY_WITHOUT_VMESS_PROTO
bool "Without VMess Protocol"
default n
config XRAY_WITHOUT_TCP_TRANS
bool "Without TCP Transport"
default n
config XRAY_WITHOUT_MKCP_TRANS
bool "Without mKCP Transport"
default n
config XRAY_WITHOUT_WEBSOCKET_TRANS
bool "Without WebSocket Transport"
default n
config XRAY_WITHOUT_HTTP2_TRANS
bool "Without HTTP/2 Transport"
default n
config XRAY_WITHOUT_DOMAIN_SOCKET_TRANS
bool "Without Domain Socket Transport"
default n
config XRAY_WITHOUT_QUIC_TRANS
bool "Without QUIC Transport"
default n
endmenu
endmenu