New setting "streaming_client.initial_volume"

This commit is contained in:
Nicolas Iselin 2022-06-26 08:53:40 +01:00 committed by badaix
parent fd4d82126f
commit 30fd1520cc
5 changed files with 27 additions and 0 deletions

View file

@ -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;
};