Fix README WebSocket example to match actual API (Fix #2493)

The quick preview used a nonexistent httplib::ws::Message type with
.is_text()/.data. The actual API, as shown in README-websocket.md,
uses a plain std::string with ws.read(msg).
This commit is contained in:
yhirose
2026-07-11 14:12:25 -04:00
parent 568d434e72
commit b40937cea8

View File

@@ -1490,11 +1490,9 @@ See [README-sse.md](README-sse.md) for more details.
httplib::Server svr;
svr.WebSocket("/ws", [](const httplib::Request &req, httplib::ws::WebSocket &ws) {
httplib::ws::Message msg;
std::string msg;
while (ws.read(msg)) {
if (msg.is_text()) {
ws.send("Echo: " + msg.data);
}
ws.send("Echo: " + msg);
}
});