emsApplication/3rdPartner/libhv/http
HwangKC a386d0c62b init 2024-05-24 12:19:45 +08:00
..
client init 2024-05-24 12:19:45 +08:00
server init 2024-05-24 12:19:45 +08:00
Http1Parser.cpp init 2024-05-24 12:19:45 +08:00
Http1Parser.h init 2024-05-24 12:19:45 +08:00
Http2Parser.cpp init 2024-05-24 12:19:45 +08:00
Http2Parser.h init 2024-05-24 12:19:45 +08:00
HttpMessage.cpp init 2024-05-24 12:19:45 +08:00
HttpMessage.h init 2024-05-24 12:19:45 +08:00
HttpParser.cpp init 2024-05-24 12:19:45 +08:00
HttpParser.h init 2024-05-24 12:19:45 +08:00
README.md init 2024-05-24 12:19:45 +08:00
WebSocketChannel.cpp init 2024-05-24 12:19:45 +08:00
WebSocketChannel.h init 2024-05-24 12:19:45 +08:00
WebSocketParser.cpp init 2024-05-24 12:19:45 +08:00
WebSocketParser.h init 2024-05-24 12:19:45 +08:00
grpcdef.h init 2024-05-24 12:19:45 +08:00
http2def.h init 2024-05-24 12:19:45 +08:00
http_content.cpp init 2024-05-24 12:19:45 +08:00
http_content.h init 2024-05-24 12:19:45 +08:00
http_parser.c init 2024-05-24 12:19:45 +08:00
http_parser.h init 2024-05-24 12:19:45 +08:00
httpdef.c init 2024-05-24 12:19:45 +08:00
httpdef.h init 2024-05-24 12:19:45 +08:00
multipart_parser.c init 2024-05-24 12:19:45 +08:00
multipart_parser.h init 2024-05-24 12:19:45 +08:00
websocket_parser.c init 2024-05-24 12:19:45 +08:00
websocket_parser.h init 2024-05-24 12:19:45 +08:00
wsdef.c init 2024-05-24 12:19:45 +08:00
wsdef.h init 2024-05-24 12:19:45 +08:00

README.md

目录结构

.
├── client
│   ├── HttpClient.h    http客户端对外头文件
│   ├── requests.h      模拟python requests api
│   └── axios.h         模拟nodejs axios 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)