Lines Matching defs:password

291     char *user, *password, *host, *path, *parms, *strp, sport[7];
308 err = ap_proxy_canon_netloc(p, &url, &user, &password, &host, &port);
313 if (password != NULL && !ftp_check_string(password))
366 (password != NULL) ? ":" : "",
367 (password != NULL) ? password : "",
487 /* Save "scheme://site" prefix without password */
915 /* Common routine for failed authorization (i.e., missing or wrong password)
917 * with username and password (which was presumably queried from the user)
920 * ftp://user@host part of the reqest (sans password -if supplied but invalid-)
926 * Log failed requests if they supplied a password (log username/password
989 const char *password = NULL;
1078 * to "override" the URL-coded user [ & password ] in the Browsers'
1080 * than having the password travel in plain as part of the URL, because
1081 * Basic Auth simply uuencodes the plain text password. But chances are
1084 if ((password = apr_table_get(r->headers_in, "Authorization")) != NULL
1085 && strcasecmp(ap_getword(r->pool, &password, ' '), "Basic") == 0
1086 && (password = ap_pbase64decode(r->pool, password))[0] != ':') {
1088 if (!ftp_check_string(password)) {
1097 user = ap_getword_nulls(r->connection->pool, &password, ':');
1104 if ((password = r->parsed_uri.password) != NULL) {
1105 char *tmp = apr_pstrdup(p, password);
1107 password = tmp;
1112 password = "apache-proxy@";
1210 * Log into the ftp server, send the username & password, change to the
1261 /* states: 1 - error, 2 - success; 3 - send password, 4,5 fail */
1263 /* 331 User name okay, need password. */
1287 if (rc == 331) { /* send password */
1288 if (password == NULL) {
1293 rc = proxy_ftp_command(apr_pstrcat(p, "PASS ", password, CRLF, NULL),