Robert Dzienisz
Robert Dzienisz
I guess it will be hard to link a github repo as it is confidential. I pasted the code in wrong order, sorry. Firsty I start the timer, then I...
Start reading from readMessageToByte. ``` void Connection::setInactivity(const boost::system::error_code& e) { if (e == boost::asio::error::operation_aborted) { // Timer was stopped due to an incoming message - it's fine return; } else...
@vinniefalco How Can I call this async_close method then? I would like to send a full frame before disconnecting. Is it possible to put a vector in this "textual close...
I think it will work out for me, I just don't know how to call async_close.. ``` template< class CloseHandler = net::default_completion_token_t> [DEDUCED] async_close( close_reason const& cr, CloseHandler&& handler =...
Is that possible to get some help with that? @vinniefalco or @madmongo1
Could you provide me any example of its usage? I can't find anything that would help me with completing that task.