I have some shared pointers to boost::asio::io_service
, boost::asio::ip::tcp::endpoint
, boost::asio::ip::tcp::acceptor
and boost::asio::ip::tcp::socket
. I accept users connection and pass shared_ptr of the socket to some class of mine. It does its work.
Now what I want is simple - count my traffic. I want to get information of how much data was sent and received during that connection. How to get such information from accepted Boost ASIO TCP socket?
Assuming you use asynchronous methods, the completion handler given to
async_read
will indicate the number of bytes received. Similarly, the completion handler given toasync_write
will indicate the number of bytes written. It would be trivial to maintain a running counter as a member of a class where you bind methods as the previously described completion handlers.