diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-03-20 18:22:08 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-03-20 18:22:08 +0300 |
commit | 2f589b3ee66956ac31ce19844d7a1d321cc6850e (patch) | |
tree | 402841b991bc1cfdc1f6ea1727a2927d748019cf /protocols/JabberG/src/jabber_proto.h | |
parent | 100badfbc7d633078f25fb4b9ecd7350140e1dfa (diff) |
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
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 762db44ea9..d6e80a1c81 100755 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -342,6 +342,11 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface void OmemoInitDevice();
void OmemoAnnounceDevice();
void OmemoSendBundle();
+ void OmemoOnIqResultServerDiscoItems(HXML iqNode, CJabberIqInfo*);
+ void OmemoOnIqResultServerDiscoInfoJid(HXML iqNode, CJabberIqInfo*);
+ void OmemoOnIqResultPubsubCreateNode(HXML iqNode, CJabberIqInfo*);
+ void OmemoCreateNodes();
+ wchar_t *m_PubsubServiceName;
//---- jabber_console.cpp ------------------------------------------------------------
|