From 2f589b3ee66956ac31ce19844d7a1d321cc6850e Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Mon, 20 Mar 2017 18:22:08 +0300 Subject: omemo: working on 4.3 implemented pubsub address detection as required by xep-0060 8.1.1 implemented xep-0060 8.1.1, xep-0163 3 as required by omemo 4.3 omemo 4.3 now complete and working //TODO: chek createnode handlers, not always called, especially if connection is slow --- protocols/JabberG/src/jabber_proto.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'protocols/JabberG/src/jabber_proto.cpp') diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp index 19813ac138..8131541853 100755 --- a/protocols/JabberG/src/jabber_proto.cpp +++ b/protocols/JabberG/src/jabber_proto.cpp @@ -70,7 +70,8 @@ CJabberProto::CJabberProto(const char *aProtoName, const wchar_t *aUserName) : m_hPrivacyMenuRoot(0), m_hPrivacyMenuItems(10), m_lstJabberFeatCapPairsDynamic(2), - m_uEnabledFeatCapsDynamic(0) + m_uEnabledFeatCapsDynamic(0), + m_PubsubServiceName(nullptr) { m_szXmlStreamToBeInitialized = NULL; @@ -190,6 +191,7 @@ CJabberProto::~CJabberProto() mir_free(m_lstJabberFeatCapPairsDynamic[i]->szDescription); delete m_lstJabberFeatCapPairsDynamic[i]; } + mir_free(m_PubsubServiceName); } //////////////////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3