summaryrefslogtreecommitdiff
path: root/louloulibs/xmpp/xmpp_component.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-11-11 02:54:48 +0100
committerlouiz’ <louiz@louiz.org>2016-11-11 02:54:48 +0100
commit0c8adc85f7373a85de8b3edc6cac87d5f7389bb3 (patch)
treeaefa90f4325424716b1304b4eac42d43371df1ca /louloulibs/xmpp/xmpp_component.cpp
parentc41d003cbf3b14b83e0f9bf6c4787c3bd60bb7ee (diff)
downloadbiboumi-0c8adc85f7373a85de8b3edc6cac87d5f7389bb3.tar.gz
biboumi-0c8adc85f7373a85de8b3edc6cac87d5f7389bb3.tar.bz2
biboumi-0c8adc85f7373a85de8b3edc6cac87d5f7389bb3.tar.xz
biboumi-0c8adc85f7373a85de8b3edc6cac87d5f7389bb3.zip
Move all the connect() logic from TCPSocketHandler into a subclass
This way, TCPSocketHandler only deal with the message sending/receiving, not the connect() or anything else. This will be used for implementing servers (because when a client is accepted, we don’t need all the connect() and dns resolution stuff).
Diffstat (limited to 'louloulibs/xmpp/xmpp_component.cpp')
-rw-r--r--louloulibs/xmpp/xmpp_component.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/louloulibs/xmpp/xmpp_component.cpp b/louloulibs/xmpp/xmpp_component.cpp
index fa8b0a5..1d1c58b 100644
--- a/louloulibs/xmpp/xmpp_component.cpp
+++ b/louloulibs/xmpp/xmpp_component.cpp
@@ -39,7 +39,7 @@ static std::set<std::string> kickable_errors{
};
XmppComponent::XmppComponent(std::shared_ptr<Poller> poller, const std::string& hostname, const std::string& secret):
- TCPSocketHandler(poller),
+ TCPClientSocketHandler(poller),
ever_auth(false),
first_connection_try(true),
secret(secret),