# HttpServer **Repository Path**: yanhai307/HttpServer ## Basic Information - **Project Name**: HttpServer - **Description**: c++ http server - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-20 - **Last Updated**: 2022-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HttpServer ## 介绍 c++ http server 基于libevent库,参考 python Werkzeug(1.0.0版本)模块编写 ## 示例 unittests目录 ### test01 最简单的http server,可以用于POST GET测试 ### test02 响应回调函数中传入外部变量 ### test03 url中的参数解析测试 ### test04 `Content-Type: application/x-www-form-urlencoded` 测试 ### test05 `Content-Type: application/json` 测试 ### test06 `Content-Type: multipart/form-data;` 上传文件测试