aboutsummaryrefslogtreecommitdiff
path: root/src/ZeroconfAvahi.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-27 22:53:21 +0100
committerMax Kellermann <max@duempel.org>2013-01-27 22:53:21 +0100
commit2cbe21c791aeb28c61a26a6ff447ba2089f58181 (patch)
tree403beae3db829f83fc0a7a019058c78f14ed50e0 /src/ZeroconfAvahi.cxx
parent0988056471fefa2ee195a170dcf57771e7926a08 (diff)
ZeroconfAvahi: pass GMainContext to avahi_glib_poll_new()
Diffstat (limited to 'src/ZeroconfAvahi.cxx')
-rw-r--r--src/ZeroconfAvahi.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ZeroconfAvahi.cxx b/src/ZeroconfAvahi.cxx
index 8fa745a6..4764ad75 100644
--- a/src/ZeroconfAvahi.cxx
+++ b/src/ZeroconfAvahi.cxx
@@ -21,6 +21,7 @@
#include "ZeroconfAvahi.hxx"
#include "ZeroconfInternal.hxx"
#include "Listen.hxx"
+#include "event/Loop.hxx"
#include "mpd_error.h"
#include <glib.h>
@@ -216,7 +217,7 @@ static void avahiClientCallback(AvahiClient * c, AvahiClientState state,
}
void
-AvahiInit(const char *serviceName)
+AvahiInit(EventLoop &loop, const char *serviceName)
{
int error;
g_debug("Initializing interface");
@@ -228,7 +229,8 @@ AvahiInit(const char *serviceName)
avahiRunning = 1;
- avahi_glib_poll = avahi_glib_poll_new(NULL, G_PRIORITY_DEFAULT);
+ avahi_glib_poll = avahi_glib_poll_new(loop.GetContext(),
+ G_PRIORITY_DEFAULT);
avahi_poll = avahi_glib_poll_get(avahi_glib_poll);
avahiClient = avahi_client_new(avahi_poll, AVAHI_CLIENT_NO_FAIL,