Update Qt4 bindings to match the latest API
[deb_shairplay.git] / src / bindings / qt4 / raopservice.cpp
index d570b4309630d9331249d5d31d46c57a15ed0f16..f34008a8fe36c115c96b1ea8b6768c80b71881ac 100644 (file)
@@ -1,3 +1,26 @@
+/**
+ * Copyright (C) 2012  Juho Vähä-Herttua
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
 #include "raopservice.h"
 #include "raopcallbackhandler.h"
 
@@ -161,7 +184,7 @@ bool RaopService::init(int max_clients, RaopCallbacks *callbacks)
     raop_cbs.audio_set_metadata = &audio_set_metadata_cb;
     raop_cbs.audio_set_coverart = &audio_set_coverart_cb;
 
-    m_raop = raop_init(max_clients, &raop_cbs, RSA_KEY);
+    m_raop = raop_init(max_clients, &raop_cbs, RSA_KEY, 0);
     if (!m_raop) {
         return false;
     }