diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-23 16:28:16 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-23 16:28:16 +0300 |
commit | cbdf4e985f31329a131e2b5cd1ba10051373bf2a (patch) | |
tree | d22112ca5991fab6cb743b1cfcd52223af7f8b86 /protocols/JabberG/src/jabber_proto.h | |
parent | 7d792ed6fb393548f886d30c2fa69f0a8555d01b (diff) |
fixes #3793 (XEP-0440: SASL Channel-Binding Type Capability support)
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index dcd6f753f2..54359d8d8c 100644 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -239,7 +239,6 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface CMOption<bool> m_bUsePopups;
CMOption<bool> m_bUseSSL;
CMOption<bool> m_bUseTLS;
- CMOption<bool> m_bUseTlsExport;
CMOption<int> m_iMamMode;
CMOption<uint32_t> m_iConnectionKeepAliveInterval;
@@ -267,6 +266,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface bool m_bStreamSent;
bool m_bMamPrefsAvailable;
bool m_bMamDisableMessages, m_bMamCreateRead;
+ bool m_bTlsExporter, m_bTlsServerEndpoint;
HWND m_hwndJabberChangePassword;
HWND m_hwndPrivacyRule;
|