supposed workaround for disabling chunked encoding (snq-)
This commit is contained in:
parent
0520f6d948
commit
067ee4fc5b
|
@ -33,6 +33,7 @@ static const char version[] = "2.1";
|
||||||
static char*
|
static char*
|
||||||
check_version ()
|
check_version ()
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
HINTERNET hINet, hFile;
|
HINTERNET hINet, hFile;
|
||||||
hINet = InternetOpen ("Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
|
hINet = InternetOpen ("Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
|
||||||
|
|
||||||
|
@ -67,8 +68,8 @@ check_version ()
|
||||||
|
|
||||||
InternetCloseHandle (hINet);
|
InternetCloseHandle (hINet);
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
|
#endif
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* Google Code's messing up with requests, use HTTP/1.0 as suggested. More info:
|
/* Google Code's messing up with requests, use HTTP/1.0 as suggested. More info:
|
||||||
|
|
||||||
http://code.google.com/p/support/issues/detail?id=6095
|
http://code.google.com/p/support/issues/detail?id=6095
|
||||||
|
@ -80,10 +81,10 @@ check_version ()
|
||||||
|
|
||||||
So this code's basically useless since disabling HTTP/1.1 will work with the
|
So this code's basically useless since disabling HTTP/1.1 will work with the
|
||||||
above code too.
|
above code too.
|
||||||
|
|
||||||
|
Update: a Connection: close header seems to disable chunked encoding.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static char buffer[1024];
|
|
||||||
DWORD dwRead;
|
|
||||||
HINTERNET hOpen, hConnect, hResource;
|
HINTERNET hOpen, hConnect, hResource;
|
||||||
|
|
||||||
hOpen = InternetOpen (TEXT ("Update Checker"),
|
hOpen = InternetOpen (TEXT ("Update Checker"),
|
||||||
|
@ -126,6 +127,10 @@ check_version ()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
static char buffer[1024];
|
||||||
|
DWORD dwRead;
|
||||||
|
|
||||||
|
HttpAddRequestHeaders (hResource, TEXT ("Connection: close\r\n"), -1L, HTTP_ADDREQ_FLAG_ADD); /* workaround for GC bug */
|
||||||
HttpSendRequest (hResource, NULL, 0, NULL, 0);
|
HttpSendRequest (hResource, NULL, 0, NULL, 0);
|
||||||
|
|
||||||
while (InternetReadFile (hResource, buffer, 1023, &dwRead))
|
while (InternetReadFile (hResource, buffer, 1023, &dwRead))
|
||||||
|
@ -142,7 +147,6 @@ check_version ()
|
||||||
InternetCloseHandle (hOpen);
|
InternetCloseHandle (hOpen);
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in New Issue