-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当测速结果 IP 数量为 0 时(没找到满足条件的 IP),如何一直循环重新测速下去? #143
Comments
这种情况,还是建议你放弃 Cloudflare 吧。。。 注意!目前最新版本的压缩包中的各个 也不需要我改软件,只需要把写的那些脚本改改就能实现一样的效果。 比如 cfst_hosts.bat 脚本,只需要在 CloudflareST 运行代码前面再添加一行 :RESET
:: 这里可以自己添加、修改 CloudflareST 的运行参数,echo.| 的作用是自动回车退出程序(不再需要加上 -p 0 参数了)
echo.|CloudflareST.exe 然后往下面翻一点,把这两个
这样当测速结果是 0 的时候,就不是中止脚本,而是重新测速了。 |
补充一下,如果 脚本/CloudflareST 所在目录下已经存在 先在 CloudflareST 运行命令后面加上指定文件名的参数(文件名随意):
然后把下面一点的
|
算了,我干脆把这几个脚本文件都改了改,所有文件名都独立分开,同时把那个 |
记得之前的版本 在筛选条件比较严苛的情况下(延迟条件在晚上炸的时候较难满足),结果会是空,这个空结果会被存进nowip,写进hosts,导致之后无法使用(得手动再改一下hosts和nowip)。所以这个功能或许有必要() |
@ColderCoder 去年 9 月有人反馈后 #119 ,我就更新了 cfst_hosts 等脚本,修复了这个问题(加了个几个判断,如下: :: 判断结果文件是否存在,如果不存在说明结果为 0
if not exist result_hosts.txt (
echo.
echo CloudflareST 测速结果 IP 数量为 0,跳过下面步骤...
goto :STOP
)
...
...
:: 判断刚刚获取的最快 IP 是否为空,以及是否和旧 IP 一样
if "%bestip%"=="" (
echo.
echo CloudflareST 测速结果 IP 数量为 0,跳过下面步骤...
goto :STOP
)
if "%bestip%"=="%nowip%" (
echo.
echo CloudflareST 测速结果 IP 数量为 0,跳过下面步骤...
goto :STOP
) |
我这里网络太差,每次都得打开测试很多次才能有一个能用的,能修改一下直到有结果在停止运行 没结果就一直运行 直到有结果再停止
谢谢作者大大
The text was updated successfully, but these errors were encountered: