diff options
author | Max Kellermann <max@duempel.org> | 2013-01-27 22:18:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-27 22:38:14 +0100 |
commit | 95c3f57b3027e0961a1e32036dcce0383fb5e6ee (patch) | |
tree | d9279be8c6c3bd46f95b674e8e59a84879f8de34 /src/Main.cxx | |
parent | 068f191c0d9459554db536ac3d7f64f9b9338381 (diff) | |
download | mpd-95c3f57b3027e0961a1e32036dcce0383fb5e6ee.tar.gz mpd-95c3f57b3027e0961a1e32036dcce0383fb5e6ee.tar.xz mpd-95c3f57b3027e0961a1e32036dcce0383fb5e6ee.zip |
zeroconf: convert to C++
Diffstat (limited to 'src/Main.cxx')
-rw-r--r-- | src/Main.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Main.cxx b/src/Main.cxx index 6cf9c3457..828462019 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -49,6 +49,7 @@ #include "IOThread.hxx" #include "fs/Path.hxx" #include "PlaylistRegistry.hxx" +#include "ZeroconfGlue.hxx" extern "C" { #include "daemon.h" @@ -56,7 +57,6 @@ extern "C" { #include "audio_config.h" #include "pcm_resample.h" #include "decoder_list.h" -#include "zeroconf.h" } #include "mpd_error.h" @@ -490,7 +490,7 @@ int mpd_main(int argc, char *argv[]) return EXIT_FAILURE; } - initZeroconf(); + ZeroconfInit(); player_create(&global_partition->pc); @@ -551,7 +551,7 @@ int mpd_main(int argc, char *argv[]) } global_partition->pc.Kill(); - finishZeroconf(); + ZeroconfDeinit(); listen_global_finish(); delete client_list; |