Zhuo Li 41f679e0c7 fix: http header parsing failures due to TCP packet segmentation (#738) há 6 meses atrás
..
client 88880c2635 fix #731: wss SetProxy há 7 meses atrás
server 3cb7c1654b optimize some log level and msg desc (#721) há 8 meses atrás
Http1Parser.cpp 41f679e0c7 fix: http header parsing failures due to TCP packet segmentation (#738) há 6 meses atrás
Http1Parser.h 3f40ed3caf tidy code style há 1 ano atrás
Http2Parser.cpp b147d53e32 fix http2 http_cb há 3 anos atrás
Http2Parser.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) há 4 anos atrás
HttpMessage.cpp 3cb7c1654b optimize some log level and msg desc (#721) há 8 meses atrás
HttpMessage.h 06cea34e1a fix: 1xx 204 304 no need Content-Length (#569) há 9 meses atrás
HttpParser.cpp 3cb7c1654b optimize some log level and msg desc (#721) há 8 meses atrás
HttpParser.h c9eda2fc88 fix #358: handle no Content-Length case há 2 anos atrás
README.md 06a7b5eb51 rename http_client to HttpClient há 2 anos atrás
WebSocketChannel.cpp 63b51b37d4 Move implement to source file há 3 anos atrás
WebSocketChannel.h e9763f0d18 rm cppcheck warnings há 2 anos atrás
WebSocketParser.cpp e9763f0d18 rm cppcheck warnings há 2 anos atrás
WebSocketParser.h 1f0e6fb250 optimize code from @mtdxc há 3 anos atrás
grpcdef.h f8fcda74ed optimize há 4 anos atrás
http2def.h b457fef203 http_async_handler(HttpRequestPtr, HttpResponseWriterPtr) há 4 anos atrás
http_content.cpp a59b2d037e fix: if empty há 1 ano atrás
http_content.h dc3e4a7f50 Add namespace hv há 3 anos atrás
http_parser.c 9a3c19c639 Fix: Potential Vulnerability in Cloned Function (#689) há 9 meses atrás
http_parser.h 80db2c4fd0 Add HUrl há 3 anos atrás
httpdef.c 493c1ed02c Add more mime types há 3 anos atrás
httpdef.h 579938146f fix : define as a whole as a judgment condition (#372) há 2 anos atrás
multipart_parser.c e9763f0d18 rm cppcheck warnings há 2 anos atrás
multipart_parser.h 8aa49422f7 add event html há 6 anos atrás
websocket_parser.c 1e3dd552fd add windows dll versions resource (#712) há 8 meses atrás
websocket_parser.h 1179b248f4 Upgrade: websocket há 4 anos atrás
wsdef.c 28ef7d07b8 rm warning há 3 anos atrás
wsdef.h 7d7fb933de fix linux gcc4.8.5 warning (#436) há 2 anos atrás

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)