mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-31 09:56:16 +02:00
first websocket draft, running on port 8080
This commit is contained in:
parent
ec3f8d8ad5
commit
49bc832870
8 changed files with 198 additions and 34 deletions
|
@ -21,8 +21,8 @@
|
|||
|
||||
#include "common/queue.h"
|
||||
#include "message/message.h"
|
||||
#include <boost/asio.hpp>
|
||||
#include <atomic>
|
||||
#include <boost/asio.hpp>
|
||||
#include <condition_variable>
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
|
@ -51,7 +51,7 @@ public:
|
|||
* Messages are sent to the client with the "send" method.
|
||||
* Received messages from the client are passed to the ControlMessageReceiver callback
|
||||
*/
|
||||
class ControlSession : public std::enable_shared_from_this<ControlSession>
|
||||
class ControlSession
|
||||
{
|
||||
public:
|
||||
/// ctor. Received message from the client are passed to MessageReceiver
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue