diff options
author | Vladimir <me@boku.ru> | 2018-01-31 17:01:42 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-31 22:09:55 +0300 |
commit | b8f8623145589530eae0bdb957e5337537797a92 (patch) | |
tree | e9c4054100cd577694805d3f9d63e8a8521bf9f6 /protocols/JabberG/src/jabber_db_utils.h | |
parent | 73b0193a9d1792e8459b56415ab2fcfdeb6fb385 (diff) |
Added an option to enable/disable carbons
Diffstat (limited to 'protocols/JabberG/src/jabber_db_utils.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_db_utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_db_utils.h b/protocols/JabberG/src/jabber_db_utils.h index 5af4099449..40654207ca 100755 --- a/protocols/JabberG/src/jabber_db_utils.h +++ b/protocols/JabberG/src/jabber_db_utils.h @@ -83,6 +83,7 @@ struct CJabberOptions CMOption<DWORD> ConnectionKeepAliveTimeout;
CMOption<BYTE> ProcessXMPPLinks;
CMOption<BYTE> IgnoreRosterGroups;
+ CMOption<BYTE> EnableCarbons;
CMOption<BYTE> UseOMEMO;
@@ -141,6 +142,7 @@ struct CJabberOptions ConnectionKeepAliveTimeout(proto, "ConnectionKeepAliveTimeout", 50000),
ProcessXMPPLinks(proto, "ProcessXMPPLinks", FALSE),
IgnoreRosterGroups(proto, "IgnoreRosterGroups", FALSE),
+ EnableCarbons(proto, "EnableCarbons", TRUE),
UseOMEMO(proto, "UseOMEMO", FALSE)
{}
};
|