X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fbindings%2Fqt4%2Fraopservice.cpp;h=f34008a8fe36c115c96b1ea8b6768c80b71881ac;hb=402dfbba0bbaf4aeda03e33a6d474de05f356cb2;hp=2656ad26af20fa05b598640a6cbb3d8d9cc11977;hpb=f65165f4a61e4ecab5cd6159c01723d5115352b4;p=deb_shairplay.git diff --git a/src/bindings/qt4/raopservice.cpp b/src/bindings/qt4/raopservice.cpp index 2656ad2..f34008a 100644 --- a/src/bindings/qt4/raopservice.cpp +++ b/src/bindings/qt4/raopservice.cpp @@ -1,11 +1,32 @@ +/** + * 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" #include #include -#include - #define RSA_KEY \ "-----BEGIN RSA PRIVATE KEY-----\n"\ "MIIEpQIBAAKCAQEA59dE8qLieItsH1WgjrcFRKj6eUWqi+bGLOX1HL3U3GhC/j0Qg90u3sG/1CUt\n"\ @@ -163,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; }