X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=42ad12d583dd859ad3160242f95e6e711e93dd34;hp=f0887070128550fc68529b0a6adc6db20982bc76;hb=f4693532403c2bcba592d322d0b5dbceaf76e758;hpb=710edfe368ed1db79cc274164523d14afc1b2c9d diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index f0887070..42ad12d5 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -91,7 +91,7 @@ public slots: virtual void setAutoReconnectRetries(quint16); void connectToIrc(bool reconnecting = false); - void disconnectFromIrc(bool requested = true, const QString &reason = QString()); + void disconnectFromIrc(bool requested = true, const QString &reason = QString(), bool withReconnect = false); void userInput(BufferInfo bufferInfo, QString msg); void putRawLine(QByteArray input); @@ -106,6 +106,8 @@ public slots: Server usedServer() const; + inline void resetPingTimeout() { _lastPingTime = 0; } + signals: void recvRawServerMsg(QString); void displayStatusMsg(QString); @@ -129,8 +131,11 @@ private slots: void networkInitialized(); void sendPerform(); + void restoreUserModes(); void doAutoReconnect(); void sendPing(); + void enablePingTimeout(); + void disablePingTimeout(); void sendAutoWho(); void startAutoWhoCycle(); @@ -166,11 +171,13 @@ private: * it is needed to determine whether or not the connection needs to be * in the automatic session restore. */ bool _quitRequested; + QString _quitReason; bool _previousConnectionAttemptFailed; int _lastUsedServerIndex; QTimer _pingTimer; + uint _lastPingTime; bool _autoWhoEnabled; QStringList _autoWhoQueue;