我是靠谱客的博主 曾经摩托,最近开发中收集的这篇文章主要介绍libevent HTTP client 的实现,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

        my_conn_ = evhttp_connection_base_new(ev_base_,ev_dns_,host,port);                                                                                  
 47                                                                                                                                                               
 48                                                                                                
 49                                                                                                                                                               
 50         struct evhttp_request *http_req;                                                                                                                      
 51         http_req = evhttp_request_new(rspCallback,(void *)arg);                        //rspCallback接收消息                                                                         
 52         struct evkeyvalq *head = evhttp_request_get_output_headers(http_req);                                                                                 
 53                                                                                                 
 55         evhttp_add_header(head,"User-Agent","My Device");                                                                                                 
 56         evhttp_add_header(head,"Connection","Keep-Alive");                                                                                                    
 57         char buf[16];                                                                                                                                         
 58         snprintf(buf,15,"%d",req.terminaltype);                                                                                                               
 59         evhttp_add_header(head,"terminaltype",buf);                                                                                                           
 60         evhttp_add_header(head,"versioninfo",req.version_info.c_str());                                                                                       
 61         evhttp_add_header(head,"osinfo",req.osinfo.c_str());                                                                                                  
 62         evhttp_add_header(head,"despasswd",req.despasswd.c_str());                                                                                            
 63                                                                                                                                                  
 66         evhttp_add_header(head,"Host",host);                                                                                                                  
 67                                                                                                                                                               
 68         int ret = evhttp_make_request(my_conn_,http_req,EVHTTP_REQ_PUT,"/myurl");                                                
 69         evhttp_uri_free(uri);                       

 

转载于:https://www.cnblogs.com/diegodu/p/4714931.html

最后

以上就是曾经摩托为你收集整理的libevent HTTP client 的实现的全部内容,希望文章能够帮你解决libevent HTTP client 的实现所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部