mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-01 07:38:52 +02:00
New setting "streaming_client.initial_volume"
This commit is contained in:
parent
fd4d82126f
commit
30fd1520cc
5 changed files with 27 additions and 0 deletions
|
@ -65,6 +65,11 @@ struct ServerSettings
|
|||
std::vector<std::string> bind_to_address{{"0.0.0.0"}};
|
||||
};
|
||||
|
||||
struct StreamingClient
|
||||
{
|
||||
uint16_t initialVolume{100};
|
||||
};
|
||||
|
||||
struct Logging
|
||||
{
|
||||
std::string sink{""};
|
||||
|
@ -75,6 +80,7 @@ struct ServerSettings
|
|||
Http http;
|
||||
Tcp tcp;
|
||||
Stream stream;
|
||||
StreamingClient streamingclient;
|
||||
Logging logging;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue