From 3b55ee911e8e2186c2d72e03874307d3aec91b8c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 12 Jan 2017 19:44:03 +0300 Subject: - stronger types, part II; - don't call hNetlibUser hConnection --- protocols/Steam/src/http_request.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/Steam') diff --git a/protocols/Steam/src/http_request.h b/protocols/Steam/src/http_request.h index fbbd7d3e84..60d3c1b403 100644 --- a/protocols/Steam/src/http_request.h +++ b/protocols/Steam/src/http_request.h @@ -140,13 +140,13 @@ public: mir_free(pData); } - HttpResponse* Send(HANDLE hConnection) + HttpResponse* Send(HNETLIBUSER nlu) { szUrl = m_url.GetBuffer(); - Netlib_Logf(Netlib_GetConnNlu(hConnection), "Send request to %s", szUrl); + Netlib_Logf(nlu, "Send request to %s", szUrl); - NETLIBHTTPREQUEST* response = (NETLIBHTTPREQUEST*)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)hConnection, (LPARAM)this); + NETLIBHTTPREQUEST* response = (NETLIBHTTPREQUEST*)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)nlu, (LPARAM)this); HttpResponse* result = new HttpResponse(response, this); CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)response); -- cgit v1.2.3