diff options
| author | Remko Tronçon <git@el-tramo.be> | 2009-07-19 13:21:38 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2009-07-19 13:27:00 (GMT) | 
| commit | a6fcd9e7aa12c5e00c61ff809e81fba14babd70c (patch) | |
| tree | f65419f4f9a78a1db574f8fa792e745f7fbdf76c /Swiften/Client/Client.h | |
| parent | 9ccf1973ec3e23e4ba061b774c3f3e3bde4f1040 (diff) | |
| download | swift-a6fcd9e7aa12c5e00c61ff809e81fba14babd70c.zip swift-a6fcd9e7aa12c5e00c61ff809e81fba14babd70c.tar.bz2 | |
Factor out common session stuff into Session class.
Diffstat (limited to 'Swiften/Client/Client.h')
| -rw-r--r-- | Swiften/Client/Client.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Swiften/Client/Client.h b/Swiften/Client/Client.h index 48b76d9..1561c75 100644 --- a/Swiften/Client/Client.h +++ b/Swiften/Client/Client.h @@ -47,7 +47,7 @@ namespace Swift {  			void send(boost::shared_ptr<Stanza>);  			virtual String getNewIQID();  			void handleElement(boost::shared_ptr<Element>); -			void handleSessionError(ClientSession::SessionError error); +			void handleSessionFinished(const boost::optional<Session::SessionError>& error);  			void handleNeedCredentials();  			void handleDataRead(const ByteArray&);  			void handleDataWritten(const ByteArray&); @@ -61,7 +61,7 @@ namespace Swift {  			TLSLayerFactory* tlsLayerFactory_;  			FullPayloadParserFactoryCollection payloadParserFactories_;  			FullPayloadSerializerCollection payloadSerializers_; -			ClientSession* session_; +			boost::shared_ptr<ClientSession> session_;  			boost::shared_ptr<Connection> connection_;  			String certificate_;  	}; | 
 Swift
 Swift