ithewei d3d0fb0eb0 update před 4 roky
..
client b3ca3b54cb fix #116: hssl_set_sni_hostname před 4 roky
server b49eff3020 fix wget Range před 4 roky
Http1Parser.cpp 11b223c316 Add HttpMessage::head_cb před 4 roky
Http1Parser.h a63ee27890 #88 http support chunked před 4 roky
Http2Parser.cpp f8fcda74ed optimize před 4 roky
Http2Parser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) před 4 roky
HttpMessage.cpp d3d0fb0eb0 update před 4 roky
HttpMessage.h e71b9a9b86 WebSocketClient::open(url, headers) před 4 roky
HttpParser.cpp efc75784c8 code review před 5 roky
HttpParser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) před 4 roky
README.md 11b223c316 Add HttpMessage::head_cb před 4 roky
WebSocketChannel.h 34c87278e4 websocket fragment před 4 roky
WebSocketParser.cpp 740b2dbe5f #86 websocket frame continue před 4 roky
WebSocketParser.h 740b2dbe5f #86 websocket frame continue před 4 roky
grpcdef.h f8fcda74ed optimize před 4 roky
http2def.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) před 4 roky
http_content.cpp 37705499e5 format code před 4 roky
http_content.h 5decc083d0 requests::uploadFile, requests::uploadFormFile před 4 roky
http_parser.c a09ca22fc3 add WITH_NGHTTP2 před 6 roky
http_parser.h a09ca22fc3 add WITH_NGHTTP2 před 6 roky
httpdef.c b2f4586147 support RESTful API před 6 roky
httpdef.h c51a9286d9 http client redirect před 4 roky
multipart_parser.c 8aa49422f7 add event html před 6 roky
multipart_parser.h 8aa49422f7 add event html před 6 roky
websocket_parser.c dbea1679b4 optimize před 4 roky
websocket_parser.h 1179b248f4 Upgrade: websocket před 4 roky
wsdef.c 9fdcca636f rm duplicate symbol #94 před 4 roky
wsdef.h 341336a74d #define HV_INLINE static inline před 4 roky

README.md

目录结构

.
├── client
│   ├── http_client.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)