diff options
author | Max Kellermann <max@duempel.org> | 2014-01-26 11:19:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-26 15:51:33 +0100 |
commit | 0b3fbdba87e9ecbfaefab9f71203a1c35f1a8b00 (patch) | |
tree | 4e103fbcbea5dd504054f0d60dbc84e83ceed52b /src/neighbor/Registry.cxx | |
parent | 3dad837ca692df4eecee9c16fd9155b4ca23e289 (diff) |
neighbor/upnp: UPnP media server discovery
Diffstat (limited to 'src/neighbor/Registry.cxx')
-rw-r--r-- | src/neighbor/Registry.cxx | 4 |
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 }; |