mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-10 23:56:43 +02:00
28 lines
326 B
C++
28 lines
326 B
C++
#ifndef SERVER_CONNECTION_H
|
|
#define SERVER_CONNECTION_H
|
|
|
|
#include "common/socketConnection.h"
|
|
|
|
|
|
using boost::asio::ip::tcp;
|
|
|
|
|
|
|
|
|
|
class ServerConnection : public SocketConnection
|
|
{
|
|
public:
|
|
ServerConnection(MessageReceiver* _receiver, std::shared_ptr<tcp::socket> _socket);
|
|
|
|
protected:
|
|
virtual void worker();
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|