diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-27 19:42:08 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-27 19:42:08 +0100 |
commit | f44d36b05e43cabde31aeaba5d25fded140345a1 (patch) | |
tree | 1024a76cb1ae671c9445dcc379cb9eddd26922aa /whiteboard.h | |
parent | 789e5555ab4c44a1ae779eccf6ccf8340602cf22 (diff) |
Added diff.cpp
Diffstat (limited to 'whiteboard.h')
-rw-r--r-- | whiteboard.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/whiteboard.h b/whiteboard.h index e39b94e..818fcfe 100644 --- a/whiteboard.h +++ b/whiteboard.h @@ -27,7 +27,8 @@ private: using connection = std::shared_ptr<boost::beast::websocket::stream<boost::asio::ip::tcp::socket>>; std::string handle_request(connection& c, const std::string& request); - void notify_other_connections(connection& c, const std::string& id); // notify all other id-related connections about changes + void notify_other_connections_file(connection& c, const std::string& id); // notify all other id-related connections about changes + void notify_other_connections_pos(connection& c, const std::string& id); // notify all other id-related connections about changes void do_session(boost::asio::ip::tcp::socket socket); void storage_cleanup(); }; |