Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/http/libcurl_http_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace azure { namespace storage_lite {
CurlEasyRequest::CurlEasyRequest(std::shared_ptr<CurlEasyClient> client, CURL *h)
: m_client(client), m_curl(h), m_slist(NULL)
{
check_code(curl_easy_setopt(handle, CURLOPT_NOSIGNAL, 1L));
Comment thread
drorgy marked this conversation as resolved.
Outdated
check_code(curl_easy_setopt(m_curl, CURLOPT_HEADERFUNCTION, header_callback));
check_code(curl_easy_setopt(m_curl, CURLOPT_HEADERDATA, this));
}
Expand Down