ZeroconfGlue.cxx 2 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19
 */

20
#include "config.h"
21 22 23
#include "ZeroconfGlue.hxx"
#include "ZeroconfAvahi.hxx"
#include "ZeroconfBonjour.hxx"
24 25
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"
Max Kellermann's avatar
Max Kellermann committed
26
#include "Listen.hxx"
27 28
#include "util/Domain.hxx"
#include "Log.hxx"
29
#include "Compiler.h"
30

31
static constexpr Domain zeroconf_domain("zeroconf");
32

33
/* The default service name to publish
34 35 36 37
 * (overridden by 'zeroconf_name' config parameter)
 */
#define SERVICE_NAME		"Music Player"

38 39
#define DEFAULT_ZEROCONF_ENABLED 1

40
static int zeroconfEnabled;
41

42
void
43
ZeroconfInit(gcc_unused EventLoop &loop)
44
{
45
	const char *serviceName;
46

47
	zeroconfEnabled = config_get_bool(ConfigOption::ZEROCONF_ENABLED,
48
					  DEFAULT_ZEROCONF_ENABLED);
49
	if (!zeroconfEnabled)
50
		return;
51

52
	if (listen_port <= 0) {
53 54
		LogWarning(zeroconf_domain,
			   "No global port, disabling zeroconf");
55 56 57 58
		zeroconfEnabled = false;
		return;
	}

59 60
	serviceName = config_get_string(ConfigOption::ZEROCONF_NAME,
					SERVICE_NAME);
61 62

#ifdef HAVE_AVAHI
63
	AvahiInit(loop, serviceName);
64 65 66
#endif

#ifdef HAVE_BONJOUR
67
	BonjourInit(loop, serviceName);
68
#endif
69 70
}

71 72
void
ZeroconfDeinit()
73
{
74
	if (!zeroconfEnabled)
75 76
		return;

77
#ifdef HAVE_AVAHI
78
	AvahiDeinit();
79
#endif /* HAVE_AVAHI */
80 81

#ifdef HAVE_BONJOUR
82
	BonjourDeinit();
83
#endif
84
}