diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-07-19 14:06:18 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-07-19 14:06:18 (GMT) |
commit | d66658252e70abfc2d4eb7cf5f694ba5dc824291 (patch) | |
tree | 516515e36150034a1142aaf9e69e4b1d2058fe70 /Swiften/Client/ClientSession.h | |
parent | 958fe81b045e54ed6dadfe1fa9b14ac317811abf (diff) | |
download | swift-contrib-d66658252e70abfc2d4eb7cf5f694ba5dc824291.zip swift-contrib-d66658252e70abfc2d4eb7cf5f694ba5dc824291.tar.bz2 |
Factor out remote & local JID into Session.
Diffstat (limited to 'Swiften/Client/ClientSession.h')
-rw-r--r-- | Swiften/Client/ClientSession.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Swiften/Client/ClientSession.h b/Swiften/Client/ClientSession.h index 22e4a88..cb1e098 100644 --- a/Swiften/Client/ClientSession.h +++ b/Swiften/Client/ClientSession.h @@ -54,10 +54,6 @@ namespace Swift { return error_; } - const JID& getJID() const { - return jid_; - } - void sendCredentials(const String& password); void setCertificate(const PKCS12Certificate& certificate); @@ -80,7 +76,6 @@ namespace Swift { boost::signal<void ()> onNeedCredentials; private: - JID jid_; TLSLayerFactory* tlsLayerFactory_; State state_; boost::optional<SessionError> error_; |