aboutsummaryrefslogtreecommitdiffstats
path: root/src/neighbor/plugins (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-02-06*/smbclient: protect all libsmbclient calls with a mutexMax Kellermann1-0/+2
libsmbclient is not thread-safe nor reentrant. We must protect all function calls with a global mutex, unfortunately.
2014-02-06neighbor/smbclient: move smbclient_domain to lib/smbclient/Domain.cxxMax Kellermann1-2/+1
2014-01-27neighbor/smbclient: add splice_after() fallback for gcc 4.6Max Kellermann1-0/+7
2014-01-26neighbor/upnp: UPnP media server discoveryMax Kellermann2-0/+166
2014-01-26neighbor/Info: add constructorMax Kellermann1-6/+1
2014-01-26neighbor: new subsystem to detect file servers on the local networkMax Kellermann2-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.