spdylay 0.3.5 发布,该版本修复了 shrpx 尝试从状态码为 304 的回应内容的 bug,SPDY 客户端和服务器端程序 spdycat/spdyd 和 shrpx 移到 src 目录,添加 --enable-src 配置选项,在 Python API 中 Session.resume_data() 返回布尔值用于表示是否发生无效参数错误。
spdylay 是 C 语言实现对 SPDY v2/3 协议支持的库
示例代码:
#include <iostream> #include "spdy.h" int main() { spdy server; if(!server.listen("localhost", 8080, "server.key", "server.crt", [](request& req, response& res) { res.set_status(200); res.set_header("content-type", "text/plain"); res.end("C++ FTW\n"); })) return EXIT_FAILURE; std::cout << "Server running at http://localhost:8080/" << std::endl; return reactor::run(server); }
暂无更多评论