diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-05-18 20:23:08 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-06-08 05:07:54 +0200 |
commit | 23f32ba39ebe5e9bbdfc4dd00d9914c0f0447ef4 (patch) | |
tree | aacd08a1fa9c56d3949e659238071ea32402907f /src/xmpp | |
parent | fa071309917252cd76d1334eedc6703057d1f29f (diff) | |
download | biboumi-23f32ba39ebe5e9bbdfc4dd00d9914c0f0447ef4.tar.gz biboumi-23f32ba39ebe5e9bbdfc4dd00d9914c0f0447ef4.tar.bz2 biboumi-23f32ba39ebe5e9bbdfc4dd00d9914c0f0447ef4.tar.xz biboumi-23f32ba39ebe5e9bbdfc4dd00d9914c0f0447ef4.zip |
Implement TLS support using Botan
For now, it tries two TLS ports and then connects to the non-tls port. In
the future we would like the user to be able to configure that.
fix #2435
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/xmpp_component.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/xmpp_component.cpp b/src/xmpp/xmpp_component.cpp index 3ec043c..06db085 100644 --- a/src/xmpp/xmpp_component.cpp +++ b/src/xmpp/xmpp_component.cpp @@ -68,7 +68,7 @@ XmppComponent::~XmppComponent() void XmppComponent::start() { - this->connect("127.0.0.1", "5347"); + this->connect("127.0.0.1", "5347", false); } bool XmppComponent::is_document_open() const |