zeroconf/Glue: move code to the ZeroconfHelper constructor

This commit is contained in:
Max Kellermann
2021-02-24 14:53:39 +01:00
parent 2d8ecd561b
commit 5f34508aae
3 changed files with 10 additions and 12 deletions

View File

@@ -84,13 +84,5 @@ ZeroconfInit(const ConfigData &config, [[maybe_unused]] EventLoop &loop)
}
}
#ifdef HAVE_AVAHI
return std::make_unique<ZeroconfHelper>(AvahiInit(loop, serviceName,
listen_port));
#endif
#ifdef HAVE_BONJOUR
return std::make_unique<ZeroconfHelper>(BonjourInit(loop, serviceName,
listen_port));
#endif
return std::make_unique<ZeroconfHelper>(loop, serviceName, listen_port);
}