Lines Matching refs:curls
91 CURL *curls = NULL; in test() local
101 easy_init(curls); in test()
102 st.easy = curls; /* to allow callbacks access */ in test()
104 easy_setopt(curls, CURLOPT_URL, URL); in test()
105 easy_setopt(curls, CURLOPT_WRITEFUNCTION, write_callback); in test()
106 easy_setopt(curls, CURLOPT_WRITEDATA, &st); in test()
107 easy_setopt(curls, CURLOPT_HEADERFUNCTION, header_callback); in test()
108 easy_setopt(curls, CURLOPT_HEADERDATA, &st); in test()
110 easy_setopt(curls, CURLOPT_NOPROGRESS, 1L); in test()
112 res = curl_easy_perform(curls); in test()
116 curl_easy_cleanup(curls); in test()