hewei.it 0e1ddd5c38 optimize code %!s(int64=4) %!d(string=hai) anos
..
client 0e1ddd5c38 optimize code %!s(int64=4) %!d(string=hai) anos
server 0e1ddd5c38 optimize code %!s(int64=4) %!d(string=hai) anos
Http1Parser.cpp 7280b6d760 optimize %!s(int64=4) %!d(string=hai) anos
Http1Parser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) %!s(int64=4) %!d(string=hai) anos
Http2Parser.cpp 75365a45ad fix #45 %!s(int64=4) %!d(string=hai) anos
Http2Parser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) %!s(int64=4) %!d(string=hai) anos
HttpMessage.cpp 3b4c460760 fix #72 %!s(int64=4) %!d(string=hai) anos
HttpMessage.h 7280b6d760 optimize %!s(int64=4) %!d(string=hai) anos
HttpParser.cpp efc75784c8 code review %!s(int64=5) %!d(string=hai) anos
HttpParser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) %!s(int64=4) %!d(string=hai) anos
README.md 43583cd644 Add TREE.md %!s(int64=5) %!d(string=hai) anos
WebSocketChannel.h e7458edd71 optimize %!s(int64=4) %!d(string=hai) anos
WebSocketParser.cpp 7280b6d760 optimize %!s(int64=4) %!d(string=hai) anos
WebSocketParser.h 97ab7fbb53 Done WebSocket %!s(int64=4) %!d(string=hai) anos
grpcdef.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) %!s(int64=4) %!d(string=hai) anos
http2def.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) %!s(int64=4) %!d(string=hai) anos
http_content.cpp 7280b6d760 optimize %!s(int64=4) %!d(string=hai) anos
http_content.h 7280b6d760 optimize %!s(int64=4) %!d(string=hai) anos
http_parser.c a09ca22fc3 add WITH_NGHTTP2 %!s(int64=6) %!d(string=hai) anos
http_parser.h a09ca22fc3 add WITH_NGHTTP2 %!s(int64=6) %!d(string=hai) anos
httpdef.c b2f4586147 support RESTful API %!s(int64=6) %!d(string=hai) anos
httpdef.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) %!s(int64=4) %!d(string=hai) anos
multipart_parser.c 8aa49422f7 add event html %!s(int64=6) %!d(string=hai) anos
multipart_parser.h 8aa49422f7 add event html %!s(int64=6) %!d(string=hai) anos
websocket_parser.c dbea1679b4 optimize %!s(int64=4) %!d(string=hai) anos
websocket_parser.h 1179b248f4 Upgrade: websocket %!s(int64=4) %!d(string=hai) anos
wsdef.c 1179b248f4 Upgrade: websocket %!s(int64=4) %!d(string=hai) anos
wsdef.h 341336a74d #define HV_INLINE static inline %!s(int64=4) %!d(string=hai) anos

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)