feat: 初步封装了 HTTP 协议请求和响应体

This commit is contained in:
2025-09-27 14:49:22 +00:00
parent b6438fc69d
commit 3433ccf467
9 changed files with 330 additions and 15 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <http/http_response.hpp>
#include <string>
#include <iostream>
int main()
{
std::string body = "Hello HTTP!";
auto builder = ouc_server::http::HttpResponse::create();
auto res =
builder.body(body)
.header("Content-Length", std::to_string(body.size()))
.header("Content-Type", "text/plain")
.build();
printf("%s\n", res.to_string().c_str());
return 0;
}