curl 라이브러리 curl_share_setopt 함수 질문드립니다.
글쓴이: park3250 / 작성시간: 목, 2015/11/26 - 6:21오후
g_sharecurl = curl_share_init();
if( g_sharecurl == NULL )
{
return CERTIFY_ERR_CURL_INIT;
}
curl_share_setopt(g_sharecurl,CURLSHOPT_LOCKFUNC, lock);
curl_share_setopt(g_sharecurl,CURLSHOPT_UNLOCKFUNC, unlock);
curl_share_setopt(g_sharecurl,CURLSHOPT_SHARE,CURL_LOCK_DATA_SHARE);
curl_share_setopt(g_sharecurl,CURLSHOPT_USERDATA,0);
g_easycurl = curl_easy_init();
if( g_easycurl == NULL )
{
return CERTIFY_ERR_CURL_INIT;
}
curl_easy_setopt(g_easycurl,CURLOPT_SHARE,g_sharecurl);
위와 같이 선언될 경우 어떤 경우에 lock, unlock 함수가 콜백 호출 되나요?
아시는분 답변 부탁드립니다..
Forums:
글쎄요.
여기 94개의 예제소스가 있으니. 참고해보세요.
http://curl.haxx.se/libcurl/c/example.html
근데. 이름이 다르네요.
curl_easy_setopt
함수 설명
http://curl.haxx.se/libcurl/c/curl_share_setopt.html
라이브러리 다운로드 링크
http://curl.haxx.se/download.html
PHP로 된 예제도 있네요.
http://phpdoc.me/manual/kr/function.curl-share-setopt.php
curl_setopt returning false with CURLOPT_COOKIESESSION, CURLOPT_COOKIEJAR, CURLOPT_COOKIEFILE
https://stackoverflow.com/questions/20261322/curl-setopt-returning-false-with-curlopt-cookiesession-curlopt-cookiejar-curlo
curl_setopt() error while trying to get http post response php
https://stackoverflow.com/questions/31938829/curl-setopt-error-while-trying-to-get-http-post-response-php
----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.
매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.
각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com
이것도 추가해봅니다.
http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNO=20&no=961214&ref=961214&page=1
----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.
매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.
각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com
댓글 달기