mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge branch 'pr1753'
This commit is contained in:
commit
998a9e2e99
|
@ -425,7 +425,7 @@ void Core::bootstrapDht()
|
||||||
{
|
{
|
||||||
const Settings::DhtServer& dhtServer = dhtServerList[j % listSize];
|
const Settings::DhtServer& dhtServer = dhtServerList[j % listSize];
|
||||||
if (tox_bootstrap(tox, dhtServer.address.toLatin1().data(),
|
if (tox_bootstrap(tox, dhtServer.address.toLatin1().data(),
|
||||||
dhtServer.port, CUserId(dhtServer.userId).data(), nullptr) == 1)
|
dhtServer.port, CUserId(dhtServer.userId).data(), nullptr))
|
||||||
{
|
{
|
||||||
qDebug() << "Bootstrapping from " + dhtServer.name
|
qDebug() << "Bootstrapping from " + dhtServer.name
|
||||||
+ ", addr " + dhtServer.address.toLatin1().data()
|
+ ", addr " + dhtServer.address.toLatin1().data()
|
||||||
|
@ -436,6 +436,18 @@ void Core::bootstrapDht()
|
||||||
qDebug() << "Error bootstrapping from "+dhtServer.name;
|
qDebug() << "Error bootstrapping from "+dhtServer.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (tox_add_tcp_relay(tox, dhtServer.address.toLatin1().data(),
|
||||||
|
dhtServer.port, CUserId(dhtServer.userId).data(), nullptr))
|
||||||
|
{
|
||||||
|
qDebug() << "Adding TCP relay from " + dhtServer.name
|
||||||
|
+ ", addr " + dhtServer.address.toLatin1().data()
|
||||||
|
+ ", port " + QString().setNum(dhtServer.port);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
qDebug() << "Error adding TCP relay from "+dhtServer.name;
|
||||||
|
}
|
||||||
|
|
||||||
j++;
|
j++;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user