aboutsummaryrefslogtreecommitdiffstats
path: root/include/crow/routing.h
diff options
context:
space:
mode:
authorMarcos Medeiros <marcos@engemap.com.br>2016-12-28 11:06:56 -0200
committerMarcos Medeiros <marcos@engemap.com.br>2016-12-28 11:06:56 -0200
commitbea1ba3797fbf8bbab209edbbf765d0e6d5960d1 (patch)
tree9b455fc7622582060d3d11d79b39434a8edb79a0 /include/crow/routing.h
parent4e39b23e455e455f1878b3e68d729a1737f3e431 (diff)
downloadcrow-bea1ba3797fbf8bbab209edbbf765d0e6d5960d1.tar.gz
crow-bea1ba3797fbf8bbab209edbbf765d0e6d5960d1.zip
Add onaccept handler to websocket rule
Diffstat (limited to 'include/crow/routing.h')
-rw-r--r--include/crow/routing.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/crow/routing.h b/include/crow/routing.h
index a8aa233..95fe354 100644
--- a/include/crow/routing.h
+++ b/include/crow/routing.h
@@ -276,12 +276,12 @@ namespace crow
void handle_upgrade(const request& req, response&, SocketAdaptor&& adaptor) override
{
- new crow::websocket::Connection<SocketAdaptor>(req, std::move(adaptor), open_handler_, message_handler_, close_handler_, error_handler_);
+ new crow::websocket::Connection<SocketAdaptor>(req, std::move(adaptor), open_handler_, message_handler_, close_handler_, error_handler_, accept_handler_);
}
#ifdef CROW_ENABLE_SSL
void handle_upgrade(const request& req, response&, SSLAdaptor&& adaptor) override
{
- new crow::websocket::Connection<SSLAdaptor>(req, std::move(adaptor), open_handler_, message_handler_, close_handler_, error_handler_);
+ new crow::websocket::Connection<SSLAdaptor>(req, std::move(adaptor), open_handler_, message_handler_, close_handler_, error_handler_, accept_handler_);
}
#endif
@@ -313,11 +313,19 @@ namespace crow
return *this;
}
+ template <typename Func>
+ self_t& onaccept(Func f)
+ {
+ accept_handler_ = f;
+ return *this;
+ }
+
protected:
std::function<void(crow::websocket::connection&)> open_handler_;
std::function<void(crow::websocket::connection&, const std::string&, bool)> message_handler_;
std::function<void(crow::websocket::connection&, const std::string&)> close_handler_;
std::function<void(crow::websocket::connection&)> error_handler_;
+ std::function<bool(const crow::request&)> accept_handler_;
};
template <typename T>