Home | History | Annotate | Download | only in lib

Lines Matching full:passwd

322   char *passwd = NULL;
329 (passwdp ? &passwd : NULL),
350 *passwdp = passwd;
2693 Curl_safefree(conn->passwd);
3273 !strequal(needle->passwd, check->passwd)) {
4712 * passwd - non-zero length if defined
4718 char **user, char **passwd, char **options)
4736 DEBUGASSERT(!**passwd);
4750 * set user/passwd, but doing that first adds more cases here :-(
4788 free(*passwd);
4789 *passwd = newpasswd;
4950 * The conn->host.name is currently [user:passwd@]host[:port] where host
5116 const char *user, const char *passwd,
5128 conn->passwd = strdup(CURL_DEFAULT_PASSWORD);
5130 conn->passwd = NULL;
5140 conn->passwd = strdup(passwd);
5142 conn->passwd = NULL;
5145 if(!conn->user || !conn->passwd)
5283 Curl_safefree(conn->passwd);
5285 conn->passwd = old_conn->passwd;
5287 old_conn->passwd = NULL;
5313 Curl_safefree(old_conn->passwd);
5352 char *passwd = NULL;
5431 passwd = strdup("");
5433 if(!user || !passwd || !options) {
5438 result = parseurlandfillconn(data, conn, &prot_missing, &user, &passwd,
5600 result = override_login(data, conn, &user, &passwd, &options);
5603 result = set_login(conn, user, passwd, options);
5859 free(passwd);