mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-24 20:07:40 +02:00
changed "IP" to "host"
This commit is contained in:
parent
b99cf2f2fc
commit
a46b7c6106
6 changed files with 15 additions and 16 deletions
|
@ -67,7 +67,7 @@ class ClientConnection
|
|||
{
|
||||
public:
|
||||
/// ctor. Received message from the server are passed to MessageReceiver
|
||||
ClientConnection(MessageReceiver* receiver, const std::string& ip, size_t port);
|
||||
ClientConnection(MessageReceiver* receiver, const std::string& host, size_t port);
|
||||
virtual ~ClientConnection();
|
||||
virtual void start();
|
||||
virtual void stop();
|
||||
|
@ -114,7 +114,7 @@ protected:
|
|||
mutable std::mutex requestMutex_;
|
||||
std::set<std::shared_ptr<PendingRequest>> pendingRequests_;
|
||||
uint16_t reqId_;
|
||||
std::string ip_;
|
||||
std::string host_;
|
||||
size_t port_;
|
||||
std::thread* readerThread_;
|
||||
chronos::msec sumTimeout_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue