diff options
| author | George Hazan <ghazan@miranda.im> | 2019-01-07 23:02:47 +0200 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2019-01-07 23:02:47 +0200 |
| commit | bf04597aff198a45ac7e5ae35d5efa35a9b46be5 (patch) | |
| tree | 5ad8a7cb096d6854cc41e6a98c2961ebee427a2e /protocols/Icq10/src/http.h | |
| parent | fb45cf394b9dc68b5df0bb1bcaab0cf5a7947a03 (diff) | |
one more way to support message delivery
Diffstat (limited to 'protocols/Icq10/src/http.h')
| -rw-r--r-- | protocols/Icq10/src/http.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Icq10/src/http.h b/protocols/Icq10/src/http.h index 1270d9445e..05dfa9ef99 100644 --- a/protocols/Icq10/src/http.h +++ b/protocols/Icq10/src/http.h @@ -21,11 +21,13 @@ class JsonReply JSONNode *m_root = nullptr; int m_errorCode = 0, m_detailCode = 0; JSONNode* m_data = nullptr; + CMStringA m_requestId; public: JsonReply(NETLIBHTTPREQUEST*); ~JsonReply(); + __forceinline const CMStringA& requestId() const { return m_requestId; } __forceinline JSONNode& data() const { return *m_data; } __forceinline int error() const { return m_errorCode; } __forceinline int detail() const { return m_detailCode; } |
