diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-04-10 19:33:27 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-04-10 19:33:27 +0000 |
commit | ab05a30ab1f725e421287bf8158508c3ba3eddd3 (patch) | |
tree | ccbbd21993e21a9e8a6d358d0216e980b1818e65 /protocols/Steam/src/http_request.h | |
parent | a1ef91459fb0a353c9919c1b8ff349efdf162b3c (diff) |
Steam: small fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@8938 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/http_request.h')
-rw-r--r-- | protocols/Steam/src/http_request.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/Steam/src/http_request.h b/protocols/Steam/src/http_request.h index 8ba2ebffa1..47e9acc3d8 100644 --- a/protocols/Steam/src/http_request.h +++ b/protocols/Steam/src/http_request.h @@ -140,7 +140,9 @@ class SecureHttpRequest : public HttpRequest {
public:
SecureHttpRequest(HANDLE hNetlibUser, int request, LPCSTR url)
- : HttpRequest(hNetlibUser, request, url) { flags = NLHRF_HTTP11 | NLHRF_SSL; }
+ : HttpRequest(hNetlibUser, request, url) {
+ flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_NODUMPSEND;
+ }
};
#endif //_HTTP_REQUEST_H_
\ No newline at end of file |