Lines Matching refs:url
78 CURL *make_handle(char *url) in make_handle() argument
84 curl_easy_setopt(handle, CURLOPT_URL, url); in make_handle()
120 size_t follow_links(CURLM *multi_handle, memory *mem, char *url) in follow_links() argument
124 htmlDocPtr doc = htmlReadMemory(mem->buf, mem->size, url, NULL, opts); in follow_links()
147 href = xmlBuildURI(href, (xmlChar *) url); in follow_links()
200 char *url; in main() local
203 curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, &url); in main()
210 printf("[%d] HTTP 200 (%s): %s\n", complete, ctype, url); in main()
213 pending += follow_links(multi_handle, mem, url); in main()
219 printf("[%d] HTTP %d: %s\n", complete, (int) res_status, url); in main()
223 printf("[%d] Connection failure: %s\n", complete, url); in main()