ithewei 1ad306b07c WITH_GNUTLS il y a 4 ans
..
client c46912e02a update il y a 4 ans
server 1ad306b07c WITH_GNUTLS il y a 4 ans
Http1Parser.cpp a63ee27890 #88 http support chunked il y a 4 ans
Http1Parser.h a63ee27890 #88 http support chunked il y a 4 ans
Http2Parser.cpp 75365a45ad fix #45 il y a 4 ans
Http2Parser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) il y a 4 ans
HttpMessage.cpp a63ee27890 #88 http support chunked il y a 4 ans
HttpMessage.h a63ee27890 #88 http support chunked il y a 4 ans
HttpParser.cpp efc75784c8 code review il y a 5 ans
HttpParser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) il y a 4 ans
README.md 43583cd644 Add TREE.md il y a 5 ans
WebSocketChannel.h e7458edd71 optimize il y a 4 ans
WebSocketParser.cpp 740b2dbe5f #86 websocket frame continue il y a 4 ans
WebSocketParser.h 740b2dbe5f #86 websocket frame continue il y a 4 ans
grpcdef.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) il y a 4 ans
http2def.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) il y a 4 ans
http_content.cpp 7280b6d760 optimize il y a 4 ans
http_content.h 7280b6d760 optimize il y a 4 ans
http_parser.c a09ca22fc3 add WITH_NGHTTP2 il y a 6 ans
http_parser.h a09ca22fc3 add WITH_NGHTTP2 il y a 6 ans
httpdef.c b2f4586147 support RESTful API il y a 6 ans
httpdef.h c51a9286d9 http client redirect il y a 4 ans
multipart_parser.c 8aa49422f7 add event html il y a 6 ans
multipart_parser.h 8aa49422f7 add event html il y a 6 ans
websocket_parser.c dbea1679b4 optimize il y a 4 ans
websocket_parser.h 1179b248f4 Upgrade: websocket il y a 4 ans
wsdef.c 1179b248f4 Upgrade: websocket il y a 4 ans
wsdef.h 341336a74d #define HV_INLINE static inline il y a 4 ans

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)