aboutsummaryrefslogtreecommitdiffstats
path: root/src/neighbor/Registry.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-26 11:19:17 +0100
committerMax Kellermann <max@duempel.org>2014-01-26 15:51:33 +0100
commit0b3fbdba87e9ecbfaefab9f71203a1c35f1a8b00 (patch)
tree4e103fbcbea5dd504054f0d60dbc84e83ceed52b /src/neighbor/Registry.cxx
parent3dad837ca692df4eecee9c16fd9155b4ca23e289 (diff)
downloadmpd-0b3fbdba87e9ecbfaefab9f71203a1c35f1a8b00.tar.gz
mpd-0b3fbdba87e9ecbfaefab9f71203a1c35f1a8b00.tar.xz
mpd-0b3fbdba87e9ecbfaefab9f71203a1c35f1a8b00.zip
neighbor/upnp: UPnP media server discovery
Diffstat (limited to 'src/neighbor/Registry.cxx')
-rw-r--r--src/neighbor/Registry.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/neighbor/Registry.cxx b/src/neighbor/Registry.cxx
index fc9d05ecf..f6d1f97b3 100644
--- a/src/neighbor/Registry.cxx
+++ b/src/neighbor/Registry.cxx
@@ -21,6 +21,7 @@
#include "Registry.hxx"
#include "NeighborPlugin.hxx"
#include "plugins/SmbclientNeighborPlugin.hxx"
+#include "plugins/UpnpNeighborPlugin.hxx"
#include <string.h>
@@ -28,6 +29,9 @@ const NeighborPlugin *const neighbor_plugins[] = {
#ifdef ENABLE_SMBCLIENT
&smbclient_neighbor_plugin,
#endif
+#ifdef HAVE_LIBUPNP
+ &upnp_neighbor_plugin,
+#endif
nullptr
};