当前位置:网站首页>Compress the curl library into a sending string of utf8 and send it with curl library
Compress the curl library into a sending string of utf8 and send it with curl library
2022-04-23 11:19:00 【Brother dampness】
#include <curl/curl.h>
int my_curl_init(void)
{
curl_global_init(CURL_GLOBAL_ALL);
return 1;
}
void my_curl_end(void)
{
curl_global_cleanup();
return;
}
int my_curl_post_parse(void* buffer, size_t size, size_t nmemb, char * useless)
{
memcpy(useless+strlen(useless), (char *)buffer, size*nmemb);
//if (1 == tunable_nd_debug_http_reponsed)
// printf("-------%s\n", useless);
return size*nmemb;
}
int my_curl_post_get(char *send_data, const char *url)
{
(void) nWriteLog;
if (!send_data)
return 0;
CURLcode res;
CURL *curl;
int iRet = 1;
char szBuf[2048];
struct curl_slist *chunk =0;
curl = curl_easy_init();
if (!curl)
return 0;
char* send_data_urlencode = curl_easy_escape(curl, send_data, strlen(send_data));
if (!send_data_urlencode)
{
curl_free(send_data_urlencode);
curl_easy_cleanup(curl);
return 0;
}
int nTotalLen = strlen(send_data_urlencode);
int nOffset = 0;
if (nTotalLen < 1)
{
curl_easy_cleanup(curl);
return 0;
}
for (int i = 0; i < nTotalLen; i++)
{
char v = send_data_urlencode[i];
switch (v)
{
case '%':
if ((i + 2) < nTotalLen)
{
if ('3' == send_data_urlencode[i + 1])
{
if ('D' == send_data_urlencode[i + 2])
{
send_data_urlencode[nOffset] = '=';
i += 2;
nOffset++;
continue;
}
}
else if ('2' == send_data_urlencode[i + 1])
{
if ('6' == send_data_urlencode[i + 2])
{
send_data_urlencode[nOffset] = '&';
i += 2;
nOffset++;
continue;
}
}
}
break;
default:
break;
}
send_data_urlencode[nOffset] = v;
nOffset++;
}
send_data_urlencode[nOffset] = 0;
chunk = curl_slist_append(chunk, "Content-Type: application/x-www-form-urlencoded");
sprintf(szBuf, "Content-Length: %ld", strlen(send_data_urlencode));
chunk = curl_slist_append(chunk, szBuf);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, send_data_urlencode);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_curl_post_parse);
memset(szBuf, 0, sizeof(szBuf));
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&szBuf);
curl_easy_setopt(curl, CURLOPT_POST, 1);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L);
curl_easy_setopt(curl, CURLOPT_FORBID_REUSE, 1);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 5L);
long httpcode = 0;
res = curl_easy_perform(curl);
if (res == CURLE_OK)
{
if (CURLE_OK == curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode))
{
plog("httpcode=%ld", httpcode);
}
}
int nSuccess = 0;
if (strstr(szBuf, "\"Code\":13000"))
{
nSuccess=1;
}
if (200 == httpcode)
{
iRet = 1;
if ( 0 == nSuccess)
{
}
}
else
{
iRet = -1;
}
curl_free(send_data_urlencode);
curl_easy_cleanup(curl);
return iRet;
}
The code called is as follows :
my_curl_init();
int nRet = my_curl_post_get( SendDataBuf, tunable_nd_log_url);
my_curl_end();
版权声明
本文为[Brother dampness]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231115090984.html
边栏推荐
- MySQL分区表实现按月份归类
- When the activity is in progress! Click the link to join the live studio to participate in "can AI really save energy?" Let's have a discussion!
- 数据库管理软件SQLPro for SQLite for Mac 2022.30
- Implementation of partition table of existing data table by MySQL
- Laravel admin time range selector daterange default value problem
- 系统编程之高级文件IO(十三)——IO多路复用-select
- Mba-day6 logic - hypothetical reasoning exercises
- 2022爱分析· 工业互联网厂商全景报告
- Mysql系列SQL查询语句书写顺序及执行顺序详解
- MySQL Router重装后重新连接集群进行引导出现的——此主机中之前已配置过的问题
猜你喜欢

系统编程之高级文件IO(十三)——IO多路复用-select

Database management software sqlpro for SQLite for Mac 2022.30

升级cpolar内网穿透能获得的功能

Write console script by laravel

CUMCM 2021-b: preparation of C4 olefins by ethanol coupling (2)

Jupyter Lab 十大高生产力插件

laravel编写Console脚本

Go interface usage

Upgrade the functions available for cpolar intranet penetration

赛微微电科创板上市破发:跌幅达26% 公司市值44亿
随机推荐
解析社交性机器人对基础科学的作用
Mysql8. 0 installation guide
用curl库压缩成发送字符串为utf8并用curl库发送
An interesting interview question
Applet payment
MIT: label every pixel in the world with unsupervised! Humans: no more 800 hours for an hour of video
CUMCM 2021-b: preparation of C4 olefins by ethanol coupling (2)
Mysql database transaction example tutorial
Difference between pregnancy box and delivery box
MySQL面试题讲解之如何设置Hash索引
Mysql8.0安装指南
ConstraintLayout布局
MIT:用无监督为世界上每个像素都打上标签!人类:再也不用为1小时视频花800个小时了
Share two practical shell scripts
Mysql系列SQL查询语句书写顺序及执行顺序详解
学习 Go 语言 0x05:《Go 语言之旅》中映射(map)的练习题代码
GPU, CUDA,cuDNN三者的关系总结
卷积层和池化层总结
R-drop: a more powerful dropout regularization method
Detailed explanation of how to smoothly go online after MySQL table splitting