Check-in [6842999f82]
Not logged in
Overview

SHA1 Hash:6842999f824d0cd482a9e366dc544f58c41a81ac
Date: 2009-10-05 14:29:51
User: drh
Comment:Sync client uses only HTTP/1.0 in order to avoid having to support chunked encoding.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/http.c from [2787a16cdc] to [488f99c0c0].

@@ -89,11 +89,11 @@
   if( i>0 && g.urlPath[i-1]=='/' ){
     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);
   blob_appendf(pHdr, "User-Agent: Fossil/" MANIFEST_VERSION "\r\n");