diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-15 13:10:56 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-15 13:10:56 +0000 |
commit | 9c4370db4f2e5f5ee77e03a8c5c4c1e226274768 (patch) | |
tree | e6b9936fb28e85ec702d03ff8db294d2b2f50c15 /protocols/SkypeWeb/src/requests/poll.h | |
parent | de6edc08ee0c1faffb6456abc31fc9bd8a5b0e32 (diff) |
SkypeWeb: refactoring part 1
git-svn-id: http://svn.miranda-ng.org/main/trunk@14960 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/requests/poll.h')
-rw-r--r-- | protocols/SkypeWeb/src/requests/poll.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/SkypeWeb/src/requests/poll.h b/protocols/SkypeWeb/src/requests/poll.h index 8efecb21d0..39e7cbd6c6 100644 --- a/protocols/SkypeWeb/src/requests/poll.h +++ b/protocols/SkypeWeb/src/requests/poll.h @@ -21,15 +21,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. class PollRequest : public HttpRequest
{
public:
- PollRequest(const char *regToken, const char *server = SKYPE_ENDPOINTS_HOST) :
- HttpRequest(REQUEST_POST, FORMAT, "%s/v1/users/ME/endpoints/SELF/subscriptions/0/poll", server)
+ PollRequest(LoginInfo &li) :
+ HttpRequest(REQUEST_POST, FORMAT, "%s/v1/users/ME/endpoints/SELF/subscriptions/0/poll", li.endpoint.szServer)
{
timeout = 60000;
flags |= NLHRF_PERSISTENT;
Headers
<< CHAR_VALUE("Connection", "keep-alive")
<< CHAR_VALUE("Accept", "application/json, text/javascript")
- << FORMAT_VALUE("RegistrationToken", "registrationToken=%s", regToken);
+ << FORMAT_VALUE("RegistrationToken", "registrationToken=%s", li.endpoint.szToken);
}
};
#endif //_SKYPE_POLL_H_
\ No newline at end of file |