mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-19 01:18:17 +02:00
configuration is stored in file snapserver.conf
This commit is contained in:
parent
fa508eafba
commit
72bd17cb20
11 changed files with 266 additions and 89 deletions
|
@ -39,7 +39,7 @@ class ControlSessionHttp : public ControlSession, public std::enable_shared_from
|
|||
{
|
||||
public:
|
||||
/// ctor. Received message from the client are passed to MessageReceiver
|
||||
ControlSessionHttp(ControlMessageReceiver* receiver, tcp::socket&& socket);
|
||||
ControlSessionHttp(ControlMessageReceiver* receiver, tcp::socket&& socket, const ServerSettings::HttpSettings& settings);
|
||||
~ControlSessionHttp() override;
|
||||
void start() override;
|
||||
void stop() override;
|
||||
|
@ -71,6 +71,7 @@ protected:
|
|||
protected:
|
||||
tcp::socket socket_;
|
||||
beast::flat_buffer buffer_;
|
||||
ServerSettings::HttpSettings settings_;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue