some more items on the todo list

This commit is contained in:
badaix 2019-11-04 22:42:32 +01:00
parent a332a3c994
commit d198b4d0b1
2 changed files with 9 additions and 5 deletions

View file

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

View file

@ -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)