mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
added missing &
signs in guide
This commit is contained in:
parent
ab2a132bff
commit
ecc06fa0b3
@ -7,9 +7,9 @@ A websocket route differs from a normal route quite a bit. It uses A slightly al
|
|||||||
|
|
||||||
- `#!cpp onaccept([&](const crow::request& req, void** userdata){handler code goes here})`
|
- `#!cpp onaccept([&](const crow::request& req, void** userdata){handler code goes here})`
|
||||||
- `#!cpp onopen([&](crow::websocket::connection& conn){handler code goes here})`
|
- `#!cpp onopen([&](crow::websocket::connection& conn){handler code goes here})`
|
||||||
- `#!cpp onmessage([&](crow::websocket::connection& conn, const std::string message, bool is_binary){handler code goes here})`
|
- `#!cpp onmessage([&](crow::websocket::connection& conn, const std::string& message, bool is_binary){handler code goes here})`
|
||||||
- `#!cpp onerror([&](crow::websocket::connection& conn, const std::string error_message){handler code goes here})`
|
- `#!cpp onerror([&](crow::websocket::connection& conn, const std::string& error_message){handler code goes here})`
|
||||||
- `#!cpp onclose([&](crow::websocket::connection& conn, const std::string reason){handler code goes here})`
|
- `#!cpp onclose([&](crow::websocket::connection& conn, const std::string& reason){handler code goes here})`
|
||||||
|
|
||||||
!!! note
|
!!! note
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user