winhttp: Don't change the verb if the server response is HTTP_STATUS_REDIRECT_KEEP_VERB.
[wine] / dlls / winhttp / request.c
2011-06-01  Hans Leidekkerwinhttp: Don't change the verb if the server response...
2011-05-09  Karsten Elfenbeinwinhttp: Follow 307 temporary redirect.
2011-03-28  AndrĂ© Hentschelwinhttp: Port numbers are unsigned.
2010-08-20  Alexandre Julliardwinhttp: Make WinHttpQueryHeaders behave the same way...
2010-04-22  Hans Leidekkerwinhttp: Add support for basic authentication.
2010-03-05  Hans Leidekkerwinhttp: Implement WINHTTP_QUERY_STATUS_TEXT.
2010-02-22  Hans Leidekkerwinhttp: Add support for resolve timeouts.
2010-01-25  Hans Leidekkerwinhttp: Store the context passed to WinHttpSendRequest.
2009-12-04  Juan Langwinhttp: Pass hostname to netconn_secure_connect.
2009-10-29  Hans Leidekkerwinhttp: Implement WinHttpQueryHeaders(WINHTTP_QUERY_VE...
2009-10-29  Hans Leidekkerwinhttp: Accept empty headers parameter in WinHttpSendR...
2009-10-02  Michael Stefaniucwinhttp: 'http1_1' is already defined in the private...
2009-08-03  Gerald Pfeiferwinhttp: Include <sys/socket.h> from winhttp_private...
2009-07-24  Juan Langwinhttp: Implement connect timeout.
2009-07-22  Marcus Meissnerwinhttp: Check for NULL return from heap_alloc (Coverity).
2009-07-22  Juan Langwinhttp: Set a socket's timeouts when it's created.
2009-07-16  Juan Langwinhttp: Use the correct address length when connecting.
2009-07-15  Juan Langwinhttp: Issue CONNECT command to connect to a secure...
2009-07-15  Juan Langwinhttp: Use proxy server when redirecting.
2009-07-15  Juan Langwinhttp: Connect to the proxy port rather than the...
2009-07-15  Juan Langwinhttp: When connecting via a proxy include full hostn...
2009-07-09  Juan Langwinhttp: Support IPv6 addresses in open_connection.
2009-07-09  Juan Langwinhttp: Convert connect_t's address type from a struct...
2009-07-09  Juan Langwinhttp: Change type of netconn_resolve from struct...
2009-02-05  Michael Stefaniucwinhttp: Remove superfluous pointer casts.
2009-01-05  Alexandre Julliardwinhttp: Use ~0u instead of ~0ul for DWORD values.
2008-12-11  Hans Leidekkerwinhttp: Resolve host port at the latest possible moment.
2008-11-12  Aric Stewartwinhttp: Correct another difference between InternetCra...
2008-09-16  Hans Leidekkerwinhttp: Close the network connection if necessary.
2008-09-16  Hans Leidekkerwinhttp: Manage a session global cookie cache.
2008-09-16  Hans Leidekkerwinhttp: Move handling of default request parameters...
2008-09-16  Hans Leidekkerwinhttp: Reset content length when all data has been...
2008-09-11  Hans Leidekkerwinhttp: Strip content-type/length headers from request...
2008-09-11  Hans Leidekkerwinhttp: Preserve cookies on redirects.
2008-09-11  Hans Leidekkerwinhttp: Redirects are always GET requests.
2008-09-11  Hans Leidekkerwinhttp: Handle relative redirects.
2008-09-10  Juan Langwinhttp: Don't reference past the attribute array....
2008-09-10  Hans Leidekkerwinhttp: Don't loop on response codes other than 301...
2008-09-09  Hans Leidekkerwinhttp: Make sure not to read more data than expected...
2008-09-09  Hans Leidekkerwinhttp: WinHttpQueryDataAvailable should do a blocking...
2008-09-08  Hans Leidekkerwinhttp: Support asynchronous requests.
2008-09-08  Hans Leidekkerwinhttp: Add the remaining completion notifications.
2008-09-08  Hans Leidekkerwinhttp: The last parameter of WinHttpWriteData is...
2008-09-08  Hans Leidekkerwinhttp: Start sending async completion notifications...
2008-09-05  Hans Leidekkerwinhttp: The last parameter of WinHttpQueryDataAvailabl...
2008-09-05  Hans Leidekkerwinhttp: Implement WinHttpQueryHeaders(WINHTTP_QUERY_RA...
2008-09-04  Hans Leidekkerwinhttp: Implement some more options.
2008-09-03  Hans Leidekkerwinhttp: A non-standard port must be included in the...
2008-09-03  Hans Leidekkerwinhttp: Add zero value content length header to POST...
2008-09-03  Hans Leidekkerwinhttp: Add status notification tests. Make them pass.
2008-09-03  Hans Leidekkerwinhttp: Handle redirects.
2008-09-03  Hans Leidekkerwinhttp: Move handling of default request parameters...
2008-08-29  Gerald Pfeiferwinhttp: Include <sys/socket.h>.
2008-08-29  Hans Leidekkerwinhttp: Test secure connections. Fix a crash when...
2008-08-29  Hans Leidekkerwinhttp: Add support for secure connections.
2008-08-27  Hans Leidekkerwinhttp: Implement WinHttpSetCredentials.
2008-08-27  Hans Leidekkerwinhttp: Implement WinHttpQueryAuthSchemes.
2008-08-26  Hans Leidekkerwinhttp: Remove some unneeded includes.
2008-08-26  Hans Leidekkerwinhttp: Implement WinHttpWriteData.
2008-08-26  Hans Leidekkerwinhttp: Implement WinHttpReadData.
2008-08-26  Hans Leidekkerwinhttp: Implement WinHttpQueryDataAvailable.
2008-08-26  Hans Leidekkerwinhttp: Implement WinHttpReceiveResponse.
2008-08-26  Hans Leidekkerwinhttp: Implement WinHttpSendRequest.
2008-08-26  Hans Leidekkerwinhttp: Add support for querying most of the standard...
2008-08-20  Hans Leidekkerwinhttp: Implement WinHttpQueryHeaders.
2008-08-20  Hans Leidekkerwinhttp: Implement WinHttpAddRequestHeaders.