curl

    [curl] curl_easy_getinfo (2)

    환경 : ubuntu 12.04 LTS 이번 포스트에서 얻는것, curl_easy_getinfo의 간단한 이해와 url이 잘못되었을 경우에 생성된 파일 처리 방법 이 검색의 이유는 잘못된 URL을 입력해도 파일이 생성되는 것일 방지하기 위해서 getinfo로 시작해서 remove로 끝나는 과정을 적인 것입니다. 시작합니다~~ ^^ dev kyu curl_easy_getinfo를 사용해서 작성한 것, 코드 curl_easy_getinfo로 동작하기 이전에 상태를 확인하려 했는데 아래의 블로그를 들어가보니 curl을 동작 시킨 이후에 확인할 수 있다. 음.. 파일 열기 전에 확인하고 싶은데... (아래 블로그에서 갖고온 코드와 주소) #include int curl_header_flag = 0; char *..

    [curl] curl_easy_getinfo (1)

    왠지 느낌이 여기서 데이터들을 갖고 오는 것 같은데..ㅋ 데이터들을 갖고 오면 좋은 점은 이 파일의 URL이 유효한지와 데이터의 크기 등 여러가지를 알 수 있겠죠~ㅋ 아마도요...ㅋ 자, hint를 찾았으니 갖고 놀아 봅시다~~ ㅎㅎ NAME curl_easy_getinfo - extract information from a curl handle SYNOPSIS #include CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ... ); DESCRIPTION Request internal information from the curl session with this function. The third argument MUST be a pointer to a..

    [curl] class로 만들시 에러코드 해결

    [class name].cpp: In member function ‘void [class name]::downloadFile(const char*, const char*)’:[class name].cpp:44:9: error: invalid use of member (did you forget the ‘&’ ?) curl을 하는데 class로 옴겼더니 동작 안되는 분들 참고하세요. 이 문제는 핸들러 함수를 static으로 선언하지 않아서 생긴 문제이다. 참고하면 시간을 아낄 수 있다. 아래 들어가서 읽으보면 바로 고쳐진다.. 이런.. http://stackoverflow.com/questions/4224722/curl-writefunction-and-classes

    [ubuntu] install curl

    $ sudo apt-get install curl$ usdo apt-get udpate && sudo apt-get upgrade

    [curl] compile 방법

    http://www.joinc.co.kr/modules/moniwiki//wiki.php/Site/Web/documents/UsedCurl http://stackoverflow.com/questions/16476196/undefined-reference-to-curl-global-init-curl-easy-init-and-other-functionc I am trying to use Curl in C. I visited Curl official page, and copied sample source code. below is the link: http://curl.haxx.se/libcurl/c/sepheaders.html when I run this code with command "gcc test.c..