Lines Matching defs:password
41 * scheme://[[user[:password]@]host[:port]]/path[[#fragment]|[?query]]
93 char *password = NULL;
95 for (password = user; (password < host - 1); password++)
96 if (*password == ':') {
97 u->password = strndup(password + 1,
98 host - password - 2);
101 u->user = strndup(user, password - user);
168 ((uri->password != NULL) && (uri->user == NULL)) ||
188 (uri->password ? ":" : ""),
189 (uri->password ? uri->password : ""),
218 if (uri->password != NULL)
219 free(uri->password);
253 if (uri->password != NULL)
254 fprintf(fp, "password: %s\n", uri->password);