Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Sync client uses only HTTP/1.0 in order to avoid having to support chunked encoding. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6842999f824d0cd482a9e366dc544f58 |
| User & Date: | drh 2009-10-05 14:29:51.000 |
Context
|
2009-10-11
| ||
| 19:47 | Fix to the "font-family" CSS line in the default CSS. Ticket [aba72eaa589]. ... (check-in: adb155b6d4 user: drh tags: trunk) | |
|
2009-10-05
| ||
| 14:29 | Sync client uses only HTTP/1.0 in order to avoid having to support chunked encoding. ... (check-in: 6842999f82 user: drh tags: trunk) | |
|
2009-10-04
| ||
| 18:29 | Remember the userid and password used to clone so that subsequent syncs work correctly. ... (check-in: 4dbc8a6dcb user: drh tags: trunk) | |
Changes
Changes to src/http.c.
| ︙ | ︙ | |||
87 88 89 90 91 92 93 |
blob_zero(pHdr);
i = strlen(g.urlPath);
if( i>0 && g.urlPath[i-1]=='/' ){
zSep = "";
}else{
zSep = "/";
}
| | | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
blob_zero(pHdr);
i = strlen(g.urlPath);
if( i>0 && g.urlPath[i-1]=='/' ){
zSep = "";
}else{
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");
if( g.fHttpTrace ){
blob_appendf(pHdr, "Content-Type: application/x-fossil-debug\r\n");
|
| ︙ | ︙ |