summaryrefslogtreecommitdiff
path: root/test/run_neighbor_explorer.cxx
AgeCommit message (Collapse)Author
2021-01-01copyright year 2021Max Kellermann
2020-01-31[clang-tidy] use override instead of virtualRosen Penev
Found with modernize-use-override Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-01-18copyright year 2020Max Kellermann
2019-02-05test/ConfigGlue: merge duplicate code from various debug programsMax Kellermann
2018-11-19check.h: remove obsolete headerMax Kellermann
Since we switched from autotools to Meson in commit 94592c14062d5afc9482d11baa401648082022c0, we don't need to include `config.h` early to properly enable large file support. Meson passes the required macros on the compiler command line instead of defining them in `config.h`. This means we can include `config.h` at any time, whenever we want to check its macros, and there are no ordering constraints.
2018-10-31*: copyright year 2018Max Kellermann
2018-08-19test/run_neighbor_explorer: allocate ConfigData on the stackMax Kellermann
2018-07-17neighbor/Glue: use struct ConfigDataMax Kellermann
2018-07-17test/*: catch and print all exceptionsMax Kellermann
2018-07-16config/Config*: rename files, drop "Config" prefixMax Kellermann
2018-06-04test/run_neighbor_explorer: make GlobalInit constMax Kellermann
2018-06-04test/run_neighbor_explorer: use ShutdownHandler to catch SIGINT/SIGTERMMax Kellermann
2018-06-02test/run_neighbor_explorer: dump NeighborGlue::GetList() after initializationMax Kellermann
2018-01-02neighbor/{Explorer,Listener}: add "noexcept"Max Kellermann
2017-08-18test/{DumpDatabase,run_neighbor_explorer}: add class GlobalInitMax Kellermann
2017-01-03update copyright yearMax Kellermann
2016-09-05neighbor/Plugin: migrate from class Error to C++ exceptionsMax Kellermann
2016-02-26update copyright year to 2016Max Kellermann
2015-12-18fs/io/Reader: use C++ exceptions instead of class ErrorMax Kellermann
2015-12-16config/ConfigFile: use std::exception on syntax errorMax Kellermann
2015-01-01Copyright year 2015Max Kellermann
2014-02-05event/Loop: remove the dummy constructor argumentMax Kellermann
2014-01-26neighbor: new subsystem to detect file servers on the local networkMax Kellermann
This commit adds the NeighborPlugin API which can be used to detect nearby file servers that can be used by input plugins. This list of servers is exported using the new "listneighbors" command. The idle even "neighbor" notifies interested clients when a new neighbor is found or an existing one is lost. There's a lot missing currently: protocol&user documentation, and a way to "mount" remote servers into the music database. Obviously, some code from the UPnP database plugin can be moved to a neighbor plugin.