#6372 More logging around client disconnect to make TLS state more clear
This commit is contained in:
parent
5f3dce8379
commit
2cde78ff54
|
@ -500,6 +500,14 @@ void MainWindow::checkConnected(const QString& line)
|
||||||
{
|
{
|
||||||
setSynergyState(synergyListening);
|
setSynergyState(synergyListening);
|
||||||
}
|
}
|
||||||
|
else if (line.contains("disconnected from server") || line.contains("process exited"))
|
||||||
|
{
|
||||||
|
setSynergyState(synergyDisconnected);
|
||||||
|
}
|
||||||
|
else if (line.contains("connecting to"))
|
||||||
|
{
|
||||||
|
setSynergyState(synergyConnecting);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef SYNERGY_ENTERPRISE
|
#ifndef SYNERGY_ENTERPRISE
|
||||||
|
|
Loading…
Reference in New Issue