1 Star 0 Fork 0

一二三亖/Ai_server_win64

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Base_Https_Request.h 664 Bytes
一键复制 编辑 原始数据 按行查看 历史
一二三亖 提交于 2024-10-23 23:18 . 添加项目文件。
#pragma once
#include "SSL_Client.hpp"
#include <boost/beast/http.hpp>
//请求基类
template <typename bodyType>
class Base_Https_Request
{
protected:
Base_Https_Request
(
boost::asio::io_context& io_context,
ssl::context& context,
const std::string& server,
const std::string& port
) :
client(io_context, context, server, port),
req()
{ }
//ssl客户端
SSL_Client client;
boost::beast::http::request<bodyType> req;
public:
//初始化http请求
virtual void inithttp() = 0;
//收发接口
virtual void send(std::string str) = 0;
virtual std::string recv() = 0;
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wang-rui123123/ai_server_win64.git
git@gitee.com:wang-rui123123/ai_server_win64.git
wang-rui123123
ai_server_win64
Ai_server_win64
master

搜索帮助