Libcurl 简明使用指南

Libcurl 简明使用指南

Libcurl为一个免费开源的,客户端url传输库,支持FTPFTPSTFTPHTTPHTTPSGOPHERTELNETDICTFILELDAP,跨平台,支持WindowsUnixLinux等,线程安全,支持Ipv6。并且易于使用。

http://curl.haxx.se/libcurl/

 

http://curl.haxx.se/libcurl/ 下载一个稳定的版本,注意选择OS

 

编译libcurl

下载下来的是源码包,需要编译。

解压zip文件,进入curl- 7.14.0 \lib目录(我下载的是7.14.0)。

编译Debug版本。新建一个批处理bat文件,如buildDebug.bat,内容如下:

call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\vcvars32.bat"

set CFG=debug-dll-ssl-dll-zlib-dll

set OPENSSL_PATH=E:\SSL\openssl- 0.9.7 e

set ZLIB_PATH=E:\zip\zlib123

nmake -f Makefile.vc6

 

其输出:libcurld_imp.lib, libcurld.dll

 

编译Release版本。新建一个批处理文件BuildRelease.bat,内容如下:

call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\vcvars32.bat"

set CFG=release-dll-ssl-dll-zlib-dll

set OPENSSL_PATH=E:\SSL\openssl- 0.9.7 e

set ZLIB_PATH=E:\zip\zlib123

nmake -f Makefile.vc6

 

其输出:libcurl_imp.lib, libcurl.dll

 

上面编译的是libcurl dll,使用OpenSSL Dll版本和Zlib Dll版本。如果没有,可以从www.openssl.org 或者http://www.zlib.net/ 下载。

如果需要编译其他版本,可查看Makefile.vc6,设定相应的CFG 参数即可。

 

商业软件使用libcurl时,只需要包含其copywrite声明即可。

 

Sample

 

clip_image001#include <stdio.h>
clip_image001#include "../curl- 7.14.0 /include/curl/curl.h"
clip_image001#pragma comment(lib, "../curl-7.14.0/lib/libcurl_imp.lib")
clip_image001
clip_image001
int main(void)
clip_image002clip_image003clip_image004{
clip_image005  curl = curl_easy_init();
clip_image006clip_image007 
if(curl) clip_image004{
clip_image005
clip_image005    CURLcode res;   
clip_image005    res = curl_easy_setopt(curl, CURLOPT_PROXY, "Test-pxy08:8080");
clip_image005    res = curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
clip_image005    res = curl_easy_setopt(curl, CURLOPT_URL, "http://www.vckbase.com");
clip_image005    res = curl_easy_perform(curl);
clip_image005
clip_image006clip_image007   
if(CURLE_OK == res) clip_image004{
clip_image005     
char *ct;
clip_image006clip_image007      /**//* ask for the content-type */

clip_image006clip_image007      /**//* http://curl.haxx.se/libcurl/c/curl_easy_getinfo.html */

clip_image005      res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct);
clip_image005
clip_image005     
if((CURLE_OK == res) && ct)
clip_image005        printf("We received Content-Type: %s ", ct);
clip_image008    }

clip_image005
clip_image006clip_image007    /**//* always cleanup */

clip_image005    curl_easy_cleanup(curl);
clip_image008  }

clip_image005 
return 0;
clip_image009}

 

你可能感兴趣的:(Libcurl 简明使用指南)