X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fnetworkconnection.h;h=16bfccc4223e92c919960784e80713907ad1cd32;hp=8654bd85366ba75ebfe4f1d7eb19d90193eaa1cc;hb=72d23cc04e32bfc166720f9b7ecaf4f53e63ec5e;hpb=a9ed3d0f695c6114ce643946452be686883ba2c7 diff --git a/src/core/networkconnection.h b/src/core/networkconnection.h index 8654bd85..16bfccc4 100644 --- a/src/core/networkconnection.h +++ b/src/core/networkconnection.h @@ -130,6 +130,7 @@ private slots: void socketError(QAbstractSocket::SocketError); void socketConnected(); void socketInitialized(); + void socketCloseTimeout(); void socketDisconnected(); void socketStateChanged(QAbstractSocket::SocketState); void setConnectionState(Network::ConnectionState); @@ -169,8 +170,13 @@ private: QHash _channelKeys; // stores persistent channels and their passwords, if any QTimer _autoReconnectTimer; + int _autoReconnectCount; + QTimer _socketCloseTimer; + + bool _quitRequested; + bool _previousConnectionAttemptFailed; int _lastUsedServerlistIndex;