summaryrefslogtreecommitdiff
path: root/src/bridge/bridge.cpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2013-12-27 11:53:29 +0100
committerFlorent Le Coz <louiz@louiz.org>2014-01-04 01:59:35 +0100
commitaa53276859a5fc80071d24111a311297e058e603 (patch)
treefeac10c8765c161684a558416ef537abfe1707e4 /src/bridge/bridge.cpp
parent483e17020dc4f19223001ab36da0dc48a15a0d3e (diff)
downloadbiboumi-aa53276859a5fc80071d24111a311297e058e603.tar.gz
biboumi-aa53276859a5fc80071d24111a311297e058e603.tar.bz2
biboumi-aa53276859a5fc80071d24111a311297e058e603.tar.xz
biboumi-aa53276859a5fc80071d24111a311297e058e603.zip
Keep a "connected" state in the SocketHandler class
Diffstat (limited to 'src/bridge/bridge.cpp')
-rw-r--r--src/bridge/bridge.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bridge/bridge.cpp b/src/bridge/bridge.cpp
index 606cb02..3a755a3 100644
--- a/src/bridge/bridge.cpp
+++ b/src/bridge/bridge.cpp
@@ -50,7 +50,6 @@ IrcClient* Bridge::get_irc_client(const std::string& hostname, const std::string
this->irc_clients.emplace(hostname, std::make_shared<IrcClient>(hostname, username, this));
std::shared_ptr<IrcClient> irc = this->irc_clients.at(hostname);
this->poller->add_socket_handler(irc);
- irc->start();
return irc.get();
}
}