aboutsummaryrefslogtreecommitdiffstats
path: root/src/neighbor/plugins (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lib/upnp/Discovery: apply naming conventionMax Kellermann2015-02-021-1/+1
|
* config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann2015-01-212-2/+2
| | | | The old struct config_param remains only for top-level string options.
* Copyright year 2015Max Kellermann2015-01-014-4/+4
|
* Compiler.h: add macro CLANG_OR_GCC_VERSION()Max Kellermann2014-11-281-1/+1
|
* */smbclient: protect all libsmbclient calls with a mutexMax Kellermann2014-02-061-0/+2
| | | | | libsmbclient is not thread-safe nor reentrant. We must protect all function calls with a global mutex, unfortunately.
* neighbor/smbclient: move smbclient_domain to lib/smbclient/Domain.cxxMax Kellermann2014-02-061-2/+1
|
* neighbor/smbclient: add splice_after() fallback for gcc 4.6Max Kellermann2014-01-271-0/+7
|
* neighbor/upnp: UPnP media server discoveryMax Kellermann2014-01-262-0/+166
|
* neighbor/Info: add constructorMax Kellermann2014-01-261-6/+1
|
* neighbor: new subsystem to detect file servers on the local networkMax Kellermann2014-01-262-0/+312
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.