mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-13 06:04:42 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user