diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-01-22 14:00:01 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-01-22 14:00:01 (GMT) |
commit | df029015f47f284ced01b8d1f11c4d48cc2f2564 (patch) | |
tree | 455d47a7fcb0d9d90bef6a6c63bdc7120eaec286 /Swiften/Client/ClientSession.h | |
parent | 940cb5e744564ec15b805a9e5388e1fa5c60d703 (diff) | |
download | swift-contrib-df029015f47f284ced01b8d1f11c4d48cc2f2564.zip swift-contrib-df029015f47f284ced01b8d1f11c4d48cc2f2564.tar.bz2 |
Close connection properly before quitting.
Diffstat (limited to 'Swiften/Client/ClientSession.h')
-rw-r--r-- | Swiften/Client/ClientSession.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/Client/ClientSession.h b/Swiften/Client/ClientSession.h index f35c298..be0f89e 100644 --- a/Swiften/Client/ClientSession.h +++ b/Swiften/Client/ClientSession.h @@ -37,6 +37,7 @@ namespace Swift { BindingResource, StartingSession, Initialized, + Finishing, Finished }; @@ -115,7 +116,7 @@ namespace Swift { void handleElement(boost::shared_ptr<Element>); void handleStreamStart(const ProtocolHeader&); - void handleStreamFinished(boost::shared_ptr<Swift::Error>); + void handleStreamClosed(boost::shared_ptr<Swift::Error>); void handleTLSEncrypted(); @@ -139,6 +140,7 @@ namespace Swift { ClientAuthenticator* authenticator; boost::shared_ptr<StanzaAckRequester> stanzaAckRequester_; boost::shared_ptr<StanzaAckResponder> stanzaAckResponder_; + boost::shared_ptr<Swift::Error> error_; CertificateTrustChecker* certificateTrustChecker; }; } |