Lines Matching refs:user

277   const char *user;
287 user = data->state.aptr.proxyuser;
295 user = data->state.aptr.user;
299 out = aprintf("%s:%s", user ? user : "", pwd ? pwd : "");
579 if((data->state.aptr.user || data->set.str[STRING_BEARER]) &&
720 (!proxy && data->state.aptr.user &&
752 infof(data, "%s auth using %s with user '%s'",
756 (data->state.aptr.user ?
757 data->state.aptr.user : ""));
760 infof(data, "Server auth using %s with user '%s'",
761 auth, data->state.aptr.user ?
762 data->state.aptr.user : "");
808 data->state.aptr.user ||
818 return CURLE_OK; /* no authentication with no user or password */
849 /* To prevent the user+password to get sent to other than the original host
1166 if((httpcode == 401) && !data->state.aptr.user)
1584 * - if the user specifically requested HTTP 1.0
2130 with the user-agent string specified, we erase the previously made string
3051 the user has inserted his/her own TE: header we don't do this magic
3052 but then assume that the user will handle it all! */
3121 /* Check if user wants to use HTTP/2 with clear TCP */
3235 "%s" /* user agent */
3843 call to the user's header callback, so that a valid content length can be
3844 retrieved by the user in the final call. */
4018 /* "A user agent MAY ignore unexpected 1xx status responses." */
4410 /* If user has set option HTTP200ALIASES,
4642 char *user, *pass, *host, *port;
4647 user = pass = host = port = NULL;
4662 uc = curl_url_get(url, CURLUPART_USER, &user, 0);
4665 if(user) {
4671 if(user) {
4672 result = Curl_dyn_add(&buf, user);
4698 free(user);