diff options
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 53e8a2b876..f64e8579e7 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -84,7 +84,7 @@ private: RequestQueue *requestQueue;
bool isTerminated;
std::map<std::string, std::string> cookies;
- HANDLE m_pollingConnection, m_hPollingThread;
+ HANDLE m_pollingConnection, m_hPollingThread, m_hTrouterThread;
static std::map<std::tstring, std::tstring> languages;
static INT_PTR CALLBACK PasswordEditorProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
@@ -144,6 +144,13 @@ private: void OnCapabilitiesSended (const NETLIBHTTPREQUEST *response);
void OnStatusChanged (const NETLIBHTTPREQUEST *response);
+ //TRouter
+
+ void OnCreateTrouter(const NETLIBHTTPREQUEST *response);
+ void OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response);
+ void OnGetTrouter(const NETLIBHTTPREQUEST *response);
+ void CSkypeProto::TRouterThread(void*);
+
// profile
void UpdateProfileFirstName (JSONNODE *root, MCONTACT hContact = NULL);
void UpdateProfileLastName (JSONNODE *root, MCONTACT hContact = NULL);
|