mirror of
https://github.com/BotChain-Robots/rpc.git
synced 2026-07-08 17:07:21 +02:00
macOS connection quality fixes
This commit is contained in:
@@ -31,7 +31,7 @@ class TCPClient final : public ICommunicationClient {
|
||||
public:
|
||||
TCPClient(std::string ip,
|
||||
const std::shared_ptr<BlockingQueue<std::unique_ptr<std::vector<uint8_t>>>> &rx_queue)
|
||||
: port{3000}, m_ip{std::move(ip)}, m_stop_flag(false),
|
||||
: port{3001}, m_ip{std::move(ip)}, m_stop_flag(false),
|
||||
m_thread(std::thread(&TCPClient::rx_thread, this)), m_rx_queue(rx_queue) {
|
||||
}
|
||||
~TCPClient() override;
|
||||
|
||||
Reference in New Issue
Block a user