整合函数

pull/542/head
YFdyh000 2020-03-15 01:17:56 +08:00
parent b6d1c4330f
commit 1922f30f0f
1 changed files with 21 additions and 45 deletions

View File

@ -51,18 +51,7 @@ namespace v2rayN.Handler
}
}
public void Close()
{
try
{
}
catch (Exception ex)
{
Utils.SaveLog(ex.Message, ex);
}
}
private void RunPing()
private void RunPingSub(Action<int> updateFun)
{
try
{
@ -74,38 +63,7 @@ namespace v2rayN.Handler
}
try
{
long time = Utils.Ping(_config.vmess[index].address);
_updateFunc(index, string.Format("{0}ms", time));
}
catch (Exception ex)
{
Utils.SaveLog(ex.Message, ex);
}
}
Thread.Sleep(100);
}
catch (Exception ex)
{
Utils.SaveLog(ex.Message, ex);
}
}
private void RunTcping()
{
try
{
foreach (int index in _selecteds)
{
if (_config.vmess[index].configType == (int)EConfigType.Custom)
{
continue;
}
try
{
var time = GetTcpingTime(_config.vmess[index].address, _config.vmess[index].port);
_updateFunc(index, string.Format("{0}ms", time));
updateFun(index);
}
catch (Exception ex)
{
@ -114,7 +72,6 @@ namespace v2rayN.Handler
}
Thread.Sleep(10);
}
catch (Exception ex)
{
@ -122,6 +79,25 @@ namespace v2rayN.Handler
}
}
private void RunPing()
{
RunPingSub((int index) =>
{
long time = Utils.Ping(_config.vmess[index].address);
_updateFunc(index, string.Format("{0}ms", time));
});
}
private void RunTcping()
{
RunPingSub((int index) =>
{
int time = GetTcpingTime(_config.vmess[index].address, _config.vmess[index].port);
_updateFunc(index, string.Format("{0}ms", time));
});
}
private void RunRealPing()
{
try