httplib使用

这篇博客介绍了如何在C++中使用httplib库来实现服务器和客户端的通信。主要内容包括server端代码的编写以及client端的实现。在编译链接httplib.h时,需要注意修改正则表达式为boost库或者升级g++编译器。
摘要由CSDN通过智能技术生成

server端代码

#include "httplib.h"

void deal(const Request &req, Response &res);

void deal(const Request &req, Response &res)
{
}


int main()
{    Http_server *p_http_server = (Http_server *)p_param;
    const char *p_ip = 127.0.0.1;
    int port = 8080;
    
    Server svr;
    //处理Get类型主动查询去请求
    svr.Get("/Alive_Check", [](const Request& req, Response& res) {
        //std::string content_type=req.get_header_value("Content-Type");
        std::string version=req.get_header_value("Version");
        res.status=HTTP_OK;//设置code码
        res.set_content("", "");//设置content—type
        res.set_header("Content-Length", "0");//设置content—length
        res.set_header("Version", version.c_str());//设置版本
        string buf = GMTStrFromTime();
        res.set_header("Date", buf.c_str());//设置时间
    });
    //处理Post类型主动查询去请求
    svr.Post("/Ali
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值