aboutsummaryrefslogtreecommitdiffstats
path: root/src/neighbor (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 Kellermann3-0/+170
2014-01-26neighbor/Glue: fix rollback rangeMax Kellermann1-1/+1
2014-01-26neighbor/Info: add constructorMax Kellermann2-6/+6
2014-01-26neighbor: new subsystem to detect file servers on the local networkMax Kellermann10-0/+755
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.