diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-03-27 00:06:33 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-03-27 00:07:47 +0300 |
commit | e7d937cd911e3971060293a66866020333db7590 (patch) | |
tree | 85e32f56ca280a7b84c5f8573ea4d71ac7fc5c36 /protocols/JabberG/src/jabber_iqid.cpp | |
parent | e7111b4836e101d0bcd7f0f0d3410ce9a072dd5f (diff) |
protocols: jabber: xep-0198
- implemented client to server acks
Diffstat (limited to 'protocols/JabberG/src/jabber_iqid.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_iqid.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_iqid.cpp b/protocols/JabberG/src/jabber_iqid.cpp index 1fad5dcebd..83febdd7ed 100755 --- a/protocols/JabberG/src/jabber_iqid.cpp +++ b/protocols/JabberG/src/jabber_iqid.cpp @@ -213,6 +213,11 @@ void CJabberProto::OnLoggedIn() setString("LastLoggedServer", m_ThreadInfo->conn.server);
m_pepServices.ResetPublishAll();
+ if (m_bEnableStreamMgmt)
+ {
+ if (m_bStrmMgmtPendingEnable && !m_bStrmMgmtEnabled)
+ EnableStrmMgmt();
+ }
}
|