util: LineReader - Drop support for raw std::byte spans

TorControlConnection and HTTPRemoteClient have been updated to use std::string receive buffers which mirrors approach in HTTPClient::ReadResponse().
This commit is contained in:
Hodlinator
2026-07-28 10:12:08 +02:00
parent 5d5cdcd79d
commit dff44e4c8f
6 changed files with 5 additions and 7 deletions

View File

@@ -461,7 +461,7 @@ public:
* we copy data from the socket buffer to the client object
* and attempt to read HTTP requests from here.
*/
std::vector<std::byte> m_recv_buffer{};
std::string m_recv_buffer{};
//! Requests from a client must be processed in the order in which
//! they were received, blocking on a per-client basis. We won't