diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-06-02 16:40:22 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-06-17 07:34:57 (GMT) |
commit | f171bc207c2a7371ac6924ff467049dd0258aa00 (patch) | |
tree | eda5b5feb94dea264ea26b839b6f9ef5e32c915f /Sluift | |
parent | 5a1bdf2f6a4842176be5938f8db5cb9d151aceb5 (diff) | |
download | swift-f171bc207c2a7371ac6924ff467049dd0258aa00.zip swift-f171bc207c2a7371ac6924ff467049dd0258aa00.tar.bz2 |
Allow different connection methods for Client.
Diffstat (limited to 'Sluift')
-rw-r--r-- | Sluift/sluift.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Sluift/sluift.cpp b/Sluift/sluift.cpp index 85b35f9..8076f5a 100644 --- a/Sluift/sluift.cpp +++ b/Sluift/sluift.cpp @@ -73,7 +73,8 @@ class SluiftClient { void connect(const std::string& host) { rosterReceived = false; - client->connect(host); + options.manualHostname = host; + client->connect(options); } void waitConnected() { |