From 5e65ecbf7c7e008ac23adc0f29bc000f7fd27019 Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Wed, 28 Mar 2018 08:21:09 +0300 Subject: 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 --- protocols/JabberG/src/jabber_strm_mgmt.h | 55 ++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 protocols/JabberG/src/jabber_strm_mgmt.h (limited to 'protocols/JabberG/src/jabber_strm_mgmt.h') diff --git a/protocols/JabberG/src/jabber_strm_mgmt.h b/protocols/JabberG/src/jabber_strm_mgmt.h new file mode 100755 index 0000000000..178727e2c0 --- /dev/null +++ b/protocols/JabberG/src/jabber_strm_mgmt.h @@ -0,0 +1,55 @@ +/* + +Jabber Protocol Plugin for Miranda NG + +Copyright (c) 2018 Miranda NG team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifndef JABBER_STRM_MGMT_H +#define JABBER_STRM_MGMT_H + +#include + +struct CJabberProto; + +class strm_mgmt +{ + void OnProcessSMa(HXML node); + void OnProcessSMr(HXML node); + + + CJabberProto *proto; + uint32_t m_nStrmMgmtSrvHCount, m_nStrmMgmtLocalHCount, m_nStrmMgmtLocalSCount, m_nStrmMgmtResumeMaxSeconds; + const uint32_t m_nStrmMgmtCacheSize = 10; + bool m_bStrmMgmtPendingEnable, m_bStrmMgmtEnabled, m_bStrmMgmtResumeSupported; + std::wstring m_sStrmMgmtResumeId; + std::list NodeCache; + +public: + strm_mgmt(CJabberProto *proto); + void EnableStrmMgmt(); + void HandleOutgoingNode(HXML node); + void HandleIncommingNode(HXML node); + void OnProcessEnabled(HXML node, ThreadData *info); + void OnProcessFailed(HXML node, ThreadData * info); + void CheckStreamFeatures(HXML node); + void CheckState(); + void OnDisconnect(); +}; + +#endif //JABBER_STRM_MGMT_H \ No newline at end of file -- cgit v1.2.3