| 351 | // Start the asynchronous operation |
| 352 | template<class Body, class Allocator> |
| 353 | void |
| 354 | run(http::request<Body, http::basic_fields<Allocator>> req) |
| 355 | { |
| 356 | // Accept the WebSocket upgrade request |
| 357 | do_accept(std::move(req)); |
| 358 | } |
| 359 | }; |
| 360 | |
| 361 | //------------------------------------------------------------------------------ |