I have the following beast::websocket example working: https://www.boost.org/doc/libs/1_76_0/libs/beast/example/websocket/server/async/
Starting from that code, and assuming that I want to distinguish a request from a client like this:
ws://mydomain.com/some_operation?channel=XXX
...from a request like this other
ws://mydomain.com/some_other_operation?channel=YYY
How can I access the request path sended by the client?