| 319 | } |
| 320 | |
| 321 | void BOBCommandSession::Send () |
| 322 | { |
| 323 | boost::asio::async_write (m_Socket, m_SendBuffer, |
| 324 | boost::asio::transfer_all (), |
| 325 | std::bind(&BOBCommandSession::HandleSent, shared_from_this (), |
| 326 | std::placeholders::_1, std::placeholders::_2)); |
| 327 | } |
| 328 | |
| 329 | void BOBCommandSession::HandleSent (const boost::system::error_code& ecode, std::size_t bytes_transferred) |
| 330 | { |
no outgoing calls
no test coverage detected