Lines Matching defs:url
71 #include "url.h"
1053 if(!data->state.url && !data->set.uh) {
1062 Curl_safefree(data->state.url);
1066 if(!data->state.url && data->set.uh) {
1088 data->state.url = data->set.str[STRING_SET_URL];
1229 * This function DOES NOT FREE the given url.
1268 when we get the next URL. We pick the ->url field, which may or may
1281 uc = curl_url_set(u, CURLUPART_URL, data->state.url, 0);
1384 /* we're only figuring out the new url if we would've followed locations
1399 Curl_safefree(data->state.url);
1401 data->state.url = newurl;
1404 infof(data, "Issue another request to this URL: '%s'", data->state.url);
1515 /* Returns CURLE_OK *and* sets '*url' if a request retry is wanted.
1517 NOTE: that the *url is malloc()ed. */
1518 CURLcode Curl_retry_request(struct Curl_easy *data, char **url)
1522 *url = NULL;
1566 *url = strdup(data->state.url);
1567 if(!*url)