summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Client/Client.cpp')
-rw-r--r--Swiften/Client/Client.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Swiften/Client/Client.cpp b/Swiften/Client/Client.cpp
index 13e7a9b..fe9bc60 100644
--- a/Swiften/Client/Client.cpp
+++ b/Swiften/Client/Client.cpp
@@ -42,10 +42,20 @@ bool Client::isAvailable() {
return session_ && session_->getState() == ClientSession::Initialized;
}
+/** FIXME: implement */
+JID Client::getBoundJID() {
+ return JID();
+}
+
void Client::connect() {
connect(jid_.getDomain());
}
+void Client::connect(const JID& jid) {
+ jid_ = jid;
+ connect();
+}
+
void Client::connect(const String& host) {
assert(!connector_); // Crash on reconnect is here.
connector_ = Connector::create(host, &resolver_, connectionFactory_, timerFactory_);