mirror of
https://github.com/etlegacy/etlegacy-tools.git
synced 2024-11-22 03:51:25 +00:00
etlist: fixed incomplete packet saving
This commit is contained in:
parent
e819a543d1
commit
ae5b795524
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ void Connection::HandleReceive(const boost::system::error_code& error,
|
||||||
boost::asio::placeholders::bytes_transferred));
|
boost::asio::placeholders::bytes_transferred));
|
||||||
|
|
||||||
// std::cout.write(data_, bytes_recvd) << std::endl;
|
// std::cout.write(data_, bytes_recvd) << std::endl;
|
||||||
response_.push_back(data_);
|
response_.push_back(std::string(data_, bytes_recvd));
|
||||||
}
|
}
|
||||||
#if 0
|
#if 0
|
||||||
else if (error)
|
else if (error)
|
||||||
|
|
Loading…
Reference in a new issue