diff options
author | Alexander Gluzsky <sss123next@list.ru> | 2016-09-08 19:32:34 +0000 |
---|---|---|
committer | Alexander Gluzsky <sss123next@list.ru> | 2016-09-08 19:32:34 +0000 |
commit | 50a2be2affae63fc6ba4e7ebb22af563f1f8b867 (patch) | |
tree | e10faa225f535678551e65619ba6e841bb9baf79 /protocols/JabberG/src/jabber_db_utils.h | |
parent | 91a382b14d293137fa3fd90d3f5d315491df9716 (diff) |
protocol:
jabber:
omemo:
placeholder option
omemo notify capability
git-svn-id: http://svn.miranda-ng.org/main/trunk@17275 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_db_utils.h')
-rwxr-xr-x[-rw-r--r--] | protocols/JabberG/src/jabber_db_utils.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_db_utils.h b/protocols/JabberG/src/jabber_db_utils.h index 6411f8b603..fd9a8ffa42 100644..100755 --- a/protocols/JabberG/src/jabber_db_utils.h +++ b/protocols/JabberG/src/jabber_db_utils.h @@ -84,6 +84,8 @@ struct CJabberOptions CMOption<BYTE> ProcessXMPPLinks;
CMOption<BYTE> IgnoreRosterGroups;
+ CMOption<BYTE> UseOMEMO;
+
CJabberOptions(PROTO_INTERFACE *proto) :
BsDirect(proto, "BsDirect", TRUE),
AllowVersionRequests(proto, "AllowVersionRequests", TRUE),
@@ -138,7 +140,8 @@ struct CJabberOptions ConnectionKeepAliveInterval(proto, "ConnectionKeepAliveInterval", 60000),
ConnectionKeepAliveTimeout(proto, "ConnectionKeepAliveTimeout", 50000),
ProcessXMPPLinks(proto, "ProcessXMPPLinks", FALSE),
- IgnoreRosterGroups(proto, "IgnoreRosterGroups", FALSE)
+ IgnoreRosterGroups(proto, "IgnoreRosterGroups", FALSE),
+ UseOMEMO(proto, "UseOMEMO", FALSE)
{}
};
|