ithewei 43583cd644 Add TREE.md 5 年之前
..
client 04e5f4987d update 5 年之前
server c93cab86db hloop_wakeup when hloop_stop called by other thread 5 年之前
Http1Parser.cpp afcc3186d7 body.reserve(content_lenght) 5 年之前
Http1Parser.h efc75784c8 code review 5 年之前
Http2Parser.cpp efc75784c8 code review 5 年之前
Http2Parser.h efc75784c8 code review 5 年之前
HttpMessage.cpp 8c4b4fa886 update 5 年之前
HttpMessage.h cd30f2e9dd http_client_send_async 5 年之前
HttpParser.cpp efc75784c8 code review 5 年之前
HttpParser.h cd30f2e9dd http_client_send_async 5 年之前
README.md 43583cd644 Add TREE.md 5 年之前
grpcdef.h e4238b7dbd update 6 年之前
http2def.h a09ca22fc3 add WITH_NGHTTP2 6 年之前
http_content.cpp 4e6fdf477a handle compile warnings 5 年之前
http_content.h abf41e1dba v1.0.0 5 年之前
http_parser.c a09ca22fc3 add WITH_NGHTTP2 6 年之前
http_parser.h a09ca22fc3 add WITH_NGHTTP2 6 年之前
httpdef.c b2f4586147 support RESTful API 6 年之前
httpdef.h 5ec98bae66 HV_EXPORT 5 年之前
multipart_parser.c 8aa49422f7 add event html 6 年之前
multipart_parser.h 8aa49422f7 add event html 6 年之前

README.md

目录结构

.
├── client
│   ├── http_client.h   http客户端对外头文件
│   └── requests.h      模拟python requests api
├── httpdef.h           http定义
├── http2def.h          http2定义
├── grpcdef.h           grpc定义
├── HttpParser.h        http解析基类
├── Http1Parser.h       http1解析类
├── Http2Parser.h       http2解析类
├── HttpMessage.h       http请求响应类
├── http_content.h      http Content-Type
├── http_parser.h       http1解析实现
├── multipart_parser.h  multipart解析
└── server
    ├── HttpServer.h    http服务端对外头文件
    ├── HttpHandler.h   http处理类
    ├── FileCache.h     文件缓存类
    ├── http_page.h     http页面构造
    └── HttpService.h   http业务类 (包括api service、web service、indexof service)