|
|
il y a 5 ans | |
|---|---|---|
| .. | ||
| client | il y a 5 ans | |
| server | il y a 5 ans | |
| Http1Parser.cpp | il y a 5 ans | |
| Http1Parser.h | il y a 5 ans | |
| Http2Parser.cpp | il y a 5 ans | |
| Http2Parser.h | il y a 5 ans | |
| HttpMessage.cpp | il y a 5 ans | |
| HttpMessage.h | il y a 5 ans | |
| HttpParser.cpp | il y a 5 ans | |
| HttpParser.h | il y a 5 ans | |
| README.md | il y a 5 ans | |
| grpcdef.h | il y a 6 ans | |
| http2def.h | il y a 6 ans | |
| http_content.cpp | il y a 5 ans | |
| http_content.h | il y a 5 ans | |
| http_parser.c | il y a 6 ans | |
| http_parser.h | il y a 6 ans | |
| httpdef.c | il y a 6 ans | |
| httpdef.h | il y a 5 ans | |
| multipart_parser.c | il y a 6 ans | |
| multipart_parser.h | il y a 6 ans | |
.
├── 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)