diff options
| author | Niels Ole Salscheider <niels_ole@salscheider-online.de> | 2017-02-12 17:18:06 +0100 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2017-02-12 17:18:06 +0100 |
| commit | 084eb01fb395488a0a3aee799be2b72ce11aa220 (patch) | |
| tree | 6fec32386c116b0560b9c5d81412993361a2f453 /src/client/QXmppOutgoingClient.h | |
| parent | 9deb86b248fee6bb9bcee14d595a933c8fdc4aa2 (diff) | |
| download | qxmpp-084eb01fb395488a0a3aee799be2b72ce11aa220.tar.gz | |
Implement XEP-0198: Stream Management (client only) (#99)
* Some features can be available with different namespaces (e.g. SM)
* Provide static functions to convert between strings and stream errors
Stream management will reuse this for <failed />.
* [travis] test builds using clang
* Implement XEP-0198: Stream Management (client only)
* QXmppOutgoingClient: Move private methods to QXmppOutgoingClientPrivate
Diffstat (limited to 'src/client/QXmppOutgoingClient.h')
| -rw-r--r-- | src/client/QXmppOutgoingClient.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/QXmppOutgoingClient.h b/src/client/QXmppOutgoingClient.h index 19531e60..0edd0a5d 100644 --- a/src/client/QXmppOutgoingClient.h +++ b/src/client/QXmppOutgoingClient.h @@ -88,6 +88,9 @@ protected: virtual void handleStream(const QDomElement &element); /// \endcond +public slots: + virtual void disconnectFromHost(); + private slots: void _q_dnsLookupFinished(); void _q_socketDisconnected(); @@ -100,9 +103,6 @@ private slots: void pingTimeout(); private: - void sendNonSASLAuth(bool plaintext); - void sendNonSASLAuthQuery(); - friend class QXmppOutgoingClientPrivate; QXmppOutgoingClientPrivate * const d; }; |
