i need to read data sent from web client.
My code is as follows
size_t len = boost::asio::read_until(*session_sock, response, "\n", ec);
I want to use read_some or read functions, but if i use it is not reading complete data?
Please help,Thanks!