diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_thread.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index 5b6877dc97..d8a7614df6 100755 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -155,6 +155,12 @@ void CJabberProto::CheckKeepAlive() if (m_bEnableStreamMgmt)
m_StrmMgmt.RequestAck();
+
+ // check expired iq requests
+ m_iqManager.CheckExpired();
+
+ // check expired ad-hoc requests
+ m_adhocManager.ExpireSessions();
}
/////////////////////////////////////////////////////////////////////////////////////////
|