Lines Matching refs:password
93 char *password = NULL; in uri_from_string() local
95 for (password = user; (password < host - 1); password++) in uri_from_string()
96 if (*password == ':') { in uri_from_string()
97 u->password = strndup(password + 1, in uri_from_string()
98 host - password - 2); in uri_from_string()
101 u->user = strndup(user, password - user); in uri_from_string()
168 ((uri->password != NULL) && (uri->user == NULL)) || in uri_to_string()
188 (uri->password ? ":" : ""), in uri_to_string()
189 (uri->password ? uri->password : ""), in uri_to_string()
218 if (uri->password != NULL) in uri_free()
219 free(uri->password); in uri_free()
253 if (uri->password != NULL) in uri_dump()
254 fprintf(fp, "password: %s\n", uri->password); in uri_dump()