Lines Matching refs:curl
33 print_cookies(CURL *curl) in print_cookies() argument
41 res = curl_easy_getinfo(curl, CURLINFO_COOKIELIST, &cookies); in print_cookies()
61 CURL *curl; in main() local
65 curl = curl_easy_init(); in main()
66 if (curl) { in main()
69 curl_easy_setopt(curl, CURLOPT_URL, "http://www.example.com/"); in main()
70 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); in main()
71 curl_easy_setopt(curl, CURLOPT_COOKIEFILE, ""); /* just to start the cookie engine */ in main()
72 res = curl_easy_perform(curl); in main()
78 print_cookies(curl); in main()
81 curl_easy_setopt(curl, CURLOPT_COOKIELIST, "ALL"); in main()
83 print_cookies(curl); in main()
93 res = curl_easy_setopt(curl, CURLOPT_COOKIELIST, nline); in main()
108 res = curl_easy_setopt(curl, CURLOPT_COOKIELIST, nline); in main()
114 print_cookies(curl); in main()
116 res = curl_easy_perform(curl); in main()