是一个跨平台的网络协议库,支持http/https/ftp/gopher/telnet/dict/file和ldap协议。
官网:
ubuntu平台下安装 :
sudo apt-get install libcurl4-openssl-dev
libcurl库的使用
1)初始化
curl_global_init();
2) 函数得到easy interface型指针
curl_easy_init();
3) 设置传输项
curl_easy_setopt();
4) 函数完成传输任务
curl_easy_perform();
5) 释放内存
curl_easy_cleanup();
标签:函数,libcurl,传输,init,easy,curl From: https://www.cnblogs.com/rohens-hbg/p/17089425.html