Differences From:
File
src/http.c
part of check-in
[7a2c37063a]
- merge trunk into creole branch
by
bob on
2009-09-22 07:49:39.
Also file
src/http.c
part of check-in
[9e274a2e7b]
- Update the proxy handler so that it supports basic authorization.
by
drh on
2009-09-12 21:53:24.
[view]
To:
File
src/http.c
part of check-in
[6842999f82]
- Sync client uses only HTTP/1.0 in order to avoid having to support
chunked encoding.
by
drh on
2009-10-05 14:29:51.
[view]
@@ -90,9 +90,9 @@
zSep = "";
}else{
zSep = "/";
}
- blob_appendf(pHdr, "POST %s%sxfer HTTP/1.1\r\n", g.urlPath, zSep);
+ blob_appendf(pHdr, "POST %s%sxfer HTTP/1.0\r\n", g.urlPath, zSep);
if( g.urlProxyAuth ){
blob_appendf(pHdr, "Proxy-Authorization: %s\n", g.urlProxyAuth);
}
blob_appendf(pHdr, "Host: %s\r\n", g.urlHostname);