加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.c 938 Bytes
一键复制 编辑 原始数据 按行查看 历史
Little Fat 提交于 2018-05-18 14:56 . 1 disable https 2 make linux work
#include "http.h"
int main() {
ft_http_client_t* http = 0;
ft_http_init();
http = ft_http_new();
while (1) {
char ch = getchar();
if (ch == -1) {
usleep(100*1000);
continue;
}
if (ch == 'q')
break;
switch (ch) {
case 'a':
{
const char* body = 0;
//ft_http_set_timeout(http, 4);
body = ft_http_sync_request(http, "http://www.iqiyi.com", M_GET);
printf("ft_http get:%s\n", body);
}
break;
case 'd':
{
int code = 0;
//ft_http_set_timeout(http, 10*1000);
code = ft_http_sync_download_file(http, "http://xxx.com/42b24b57eaaa.jpg", "code.jpg");
printf("ft_http get:%d\n", code);
}
break;
}
}
if (http) {
ft_http_destroy(http);
}
ft_http_deinit();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化