Improve help

This commit is contained in:
Keivan-sf
2025-07-27 17:28:51 +03:30
parent fc56ff59ab
commit b27f6e776f
2 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
# v2-uri-parser
V2ray URI parser for xray core
Currently supports: `vless`
@@ -12,7 +13,7 @@ Arguments:
<uri> V2ray URI to parse
Options:
--socksport <PORT> Optional SOCKS proxy port for inbound
--socksport <PORT> Optional SOCKS5 proxy port for inbound
--httpport <PORT> Optional HTTP proxy port for inbound
--get-name Only print the config name
-h, --help Print help

View File

@@ -16,7 +16,7 @@ fn main() {
.arg(
Arg::new("socksport")
.long("socksport")
.help("Optional SOCKS proxy port for inbound")
.help("Optional SOCKS5 proxy port for inbound")
.value_name("PORT")
.value_parser(value_parser!(u16)),
)