|
|
пре 4 година | |
|---|---|---|
| .. | ||
| client | пре 5 година | |
| server | пре 4 година | |
| Http1Parser.cpp | пре 5 година | |
| Http1Parser.h | пре 5 година | |
| Http2Parser.cpp | пре 4 година | |
| Http2Parser.h | пре 4 година | |
| HttpMessage.cpp | пре 5 година | |
| HttpMessage.h | пре 5 година | |
| HttpParser.cpp | пре 5 година | |
| HttpParser.h | пре 4 година | |
| README.md | пре 5 година | |
| grpcdef.h | пре 6 година | |
| http2def.h | пре 6 година | |
| http_content.cpp | пре 5 година | |
| http_content.h | пре 5 година | |
| http_parser.c | пре 6 година | |
| http_parser.h | пре 6 година | |
| httpdef.c | пре 6 година | |
| httpdef.h | пре 5 година | |
| multipart_parser.c | пре 6 година | |
| multipart_parser.h | пре 6 година | |
| websocket_parser.c | пре 4 година | |
| websocket_parser.h | пре 4 година | |
| wsdef.c | пре 4 година | |
| wsdef.h | пре 4 година | |
.
├── 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)