diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-03-28 08:21:09 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-03-28 08:21:09 +0300 |
commit | 5e65ecbf7c7e008ac23adc0f29bc000f7fd27019 (patch) | |
tree | 480f2c5510c8aef3b5a25325378f3035ea0099a4 /protocols/JabberG/src/jabber_iqid.cpp | |
parent | 351c13a90dd7d95e15e6b15632ec5c255398abd3 (diff) |
protocols: jabber: xep-0198
- moved implementation to separated units (refactoring)
- first part (without resumption) should work now (still have some bugs), feel free to test
Diffstat (limited to 'protocols/JabberG/src/jabber_iqid.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_iqid.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/protocols/JabberG/src/jabber_iqid.cpp b/protocols/JabberG/src/jabber_iqid.cpp index 83febdd7ed..c2d2d1313e 100755 --- a/protocols/JabberG/src/jabber_iqid.cpp +++ b/protocols/JabberG/src/jabber_iqid.cpp @@ -214,11 +214,7 @@ void CJabberProto::OnLoggedIn() setString("LastLoggedServer", m_ThreadInfo->conn.server);
m_pepServices.ResetPublishAll();
if (m_bEnableStreamMgmt)
- {
- if (m_bStrmMgmtPendingEnable && !m_bStrmMgmtEnabled)
- EnableStrmMgmt();
- }
-
+ m_StrmMgmt.CheckState();
}
void CJabberProto::OnIqResultGetAuth(HXML iqNode, CJabberIqInfo*)
|