Resolver and socket require an io_context
| 49 | public: |
| 50 | // Resolver and socket require an io_context |
| 51 | explicit |
| 52 | session(net::io_context& ioc) |
| 53 | : resolver_(net::make_strand(ioc)) |
| 54 | , ws_(net::make_strand(ioc)) |
| 55 | { |
| 56 | } |
| 57 | |
| 58 | // Start the asynchronous operation |
| 59 | void |
nothing calls this directly
no outgoing calls
no test coverage detected