Lines Matching refs:curl_
69 (*easy_setopt_)(curl_, CURLOPT_PROXY, proxy_host.c_str()); in SetProxy()
75 (*easy_setopt_)(curl_, CURLOPT_PROXYUSERPWD, proxy_userpwd.c_str()); in SetProxy()
116 (*easy_setopt_)(curl_, CURLOPT_URL, url.c_str()); in SendRequest()
124 (*easy_setopt_)(curl_, CURLOPT_HTTPPOST, formpost_); in SendRequest()
127 (*easy_setopt_)(curl_, CURLOPT_WRITEFUNCTION, WriteCallback); in SendRequest()
128 (*easy_setopt_)(curl_, CURLOPT_WRITEDATA, in SendRequest()
133 (*easy_setopt_)(curl_, CURLOPT_HEADERFUNCTION, WriteCallback); in SendRequest()
134 (*easy_setopt_)(curl_, CURLOPT_HEADERDATA, in SendRequest()
139 err_code = (*easy_perform_)(curl_); in SendRequest()
144 (*easy_getinfo_)(curl_, CURLINFO_RESPONSE_CODE, http_status_code); in SendRequest()
157 (*easy_cleanup_)(curl_); in SendRequest()
177 curl_ = (*easy_init_)(); in Init()
181 if (!curl_) { in Init()
191 (*easy_setopt_)(curl_, CURLOPT_HTTPHEADER, headerlist_); in Init()