Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use \r\n after Proxy-Authorization in HTTP headers. Ticket [da3fef0b21c37d] |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1b823e12763ff22530dff0021653e37f |
User & Date: | drh 2011-05-13 14:01:26.418 |
Context
2011-05-13
| ||
14:55 | Fix a floating-point comparison error that can cause blob entries to be omitted from the timeline. ... (check-in: 25ae319b user: drh tags: trunk) | |
14:20 | Pull the latest changes in trunk over into the windows-i18n branch. ... (check-in: 70743eba user: drh tags: windows-i18n) | |
14:01 | Use \r\n after Proxy-Authorization in HTTP headers. Ticket [da3fef0b21c37d] ... (check-in: 1b823e12 user: drh tags: trunk) | |
13:42 | A better way to keep the size of the content cache under control. ... (check-in: 6a714fc0 user: drh tags: trunk) | |
Changes
Changes to src/http.c.
︙ | ︙ | |||
98 99 100 101 102 103 104 | if( i>0 && g.urlPath[i-1]=='/' ){ zSep = ""; }else{ zSep = "/"; } blob_appendf(pHdr, "POST %s%sxfer/xfer HTTP/1.0\r\n", g.urlPath, zSep); if( g.urlProxyAuth ){ | | | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | if( i>0 && g.urlPath[i-1]=='/' ){ zSep = ""; }else{ zSep = "/"; } blob_appendf(pHdr, "POST %s%sxfer/xfer HTTP/1.0\r\n", g.urlPath, zSep); if( g.urlProxyAuth ){ blob_appendf(pHdr, "Proxy-Authorization: %s\r\n", g.urlProxyAuth); } if( g.urlPasswd && g.urlUser && g.urlPasswd[0]=='#' ){ char *zCredentials = mprintf("%s:%s", g.urlUser, &g.urlPasswd[1]); char *zEncoded = encode64(zCredentials, -1); blob_appendf(pHdr, "Authorization: Basic %s\r\n", zEncoded); fossil_free(zEncoded); fossil_free(zCredentials); |
︙ | ︙ |