mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-28 17:57:05 +02:00
some more items on the todo list
This commit is contained in:
parent
a332a3c994
commit
d198b4d0b1
2 changed files with 9 additions and 5 deletions
5
TODO.md
5
TODO.md
|
@ -8,12 +8,15 @@ General
|
|||
- LastSeen: relative time [s] or [ms]?
|
||||
- Android crash: Empty latency => app restart => empty client list
|
||||
- Android clean data structures after changing the Server
|
||||
- UDP for the audio stream
|
||||
- UDP based audio streaming
|
||||
|
||||
Server
|
||||
------
|
||||
|
||||
- Provide io_context to stream-readers
|
||||
- [fd stream](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-plugins/html/gstreamer-plugins-fdsink.html)
|
||||
- UDP/TCP stream
|
||||
- "sync" option for streams (realtime reading vs read as much as available)
|
||||
- Override conf file settings on command line
|
||||
|
||||
Client
|
||||
|
|
|
@ -215,10 +215,11 @@ int main(int argc, char** argv)
|
|||
#endif
|
||||
|
||||
bool active = true;
|
||||
auto signal_handler = install_signal_handler({SIGHUP, SIGTERM, SIGINT}, [&active](int signal, const std::string& strsignal) {
|
||||
SLOG(INFO) << "Received signal " << signal << ": " << strsignal << "\n";
|
||||
active = false;
|
||||
});
|
||||
auto signal_handler = install_signal_handler({SIGHUP, SIGTERM, SIGINT},
|
||||
[&active](int signal, const std::string& strsignal) {
|
||||
SLOG(INFO) << "Received signal " << signal << ": " << strsignal << "\n";
|
||||
active = false;
|
||||
});
|
||||
if (host.empty())
|
||||
{
|
||||
#if defined(HAS_AVAHI) || defined(HAS_BONJOUR)
|
||||
|
|
Loading…
Add table
Reference in a new issue