Skip to content

Commit 0cac60d

Browse files
committed
fix ipv6 err
1 parent 86bb946 commit 0cac60d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ show_help() {
127127
echo -e "Usage: $0 [-f xxx | -l | -p xxx | -v xxx | -h]"
128128
echo -e " -f, --core-file <path> 自定义 $is_core_name 文件路径, e.g., -f /root/${is_core}-linux-64.zip"
129129
echo -e " -l, --local-install 本地获取安装脚本, 使用当前目录"
130-
echo -e " -p, --proxy <addr> 使用代理下载, e.g., -p http://127.0.0.1:2333 or -p socks5://127.0.0.1:2333"
130+
echo -e " -p, --proxy <addr> 使用代理下载, e.g., -p http://127.0.0.1:2333"
131131
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v5.4.1"
132132
echo -e " -h, --help 显示此帮助界面\n"
133133

src/core.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,7 @@ get() {
11871187
[[ ! $is_addr ]] && {
11881188
get_ip
11891189
is_addr=$ip
1190+
[[ $(grep ":" <<<$ip) ]] && is_addr="[$ip]"
11901191
}
11911192
;;
11921193
new)
@@ -1536,7 +1537,7 @@ info() {
15361537
is_can_change=(0 1 5 10 11)
15371538
is_info_show=(0 1 2 3 15 8 16 17 18)
15381539
is_info_str=($is_protocol $is_addr $port $uuid xtls-rprx-vision reality $is_servername "ios" $is_public_key)
1539-
is_url="$is_protocol://$uuid@$ip:$port?encryption=none&security=reality&flow=xtls-rprx-vision&type=tcp&sni=$is_servername&pbk=$is_public_key&fp=ios#233boy-$net-$is_addr"
1540+
is_url="$is_protocol://$uuid@$is_addr:$port?encryption=none&security=reality&flow=xtls-rprx-vision&type=tcp&sni=$is_servername&pbk=$is_public_key&fp=ios#233boy-$net-$is_addr"
15401541
;;
15411542
door)
15421543
is_can_change=(0 1 8 9)

v2ray.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

33
args=$@
4-
is_sh_ver=v4.23
4+
is_sh_ver=v4.24
55

66
. /etc/v2ray/sh/src/init.sh

0 commit comments

Comments
 (0)