Differences From Artifact [e9f82fa14d]:
- File src/http.c — part of check-in [6d6740dcca] at 2013-02-21 03:51:10 on branch trunk — Improved handling for remote repository passwords: When prompting for the password, also ask the user whether or not to remember the password, as browsers typically do for their password cache. (user: drh size: 10190) [more...]
To Artifact [2e873af38b]:
- File src/http.c — part of check-in [c38ff36ddf] at 2013-07-16 05:47:17 on branch ssh-transport-changes — Remove old SSH transport code and spawn remote fossil http as remote SSH command instead. Also make it possible to configure SSH command prior to cloning. Change remote fossil command to be configurable (really this should probably be simply a matter of fixing PATH on remote end). (user: amb size: 10120)
| ︙ | |||
40 41 42 43 44 45 46 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - - - |
Blob pw; /* The nonce with user password appended */
Blob sig; /* The signature field */
blob_zero(pLogin);
if( g.urlUser==0 || fossil_strcmp(g.urlUser, "anonymous")==0 ){
return; /* If no login card for users "nobody" and "anonymous" */
}
|
| ︙ |