/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2016 Simon Stürz * * * * This file is part of guh. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or (at your option) any later version. * * * * This library 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 * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this library; If not, see * * . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef QTAVAHISERVICEBROWSERPRIVATE_H #define QTAVAHISERVICEBROWSERPRIVATE_H #include #include #include #include "qtavahiclient.h" #include "qtavahiservice.h" #include "libguh.h" class LIBGUH_EXPORT QtAvahiServiceBrowserPrivate { public: QtAvahiServiceBrowserPrivate(QtAvahiClient *client); ~QtAvahiServiceBrowserPrivate(); // Callback members static void callbackServiceTypeBrowser(AvahiServiceTypeBrowser *browser, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *type, const char *domain, AvahiLookupResultFlags flags, void *userdata); static void callbackServiceBrowser(AvahiServiceBrowser *browser, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AvahiLookupResultFlags flags, void *userdata); static void callbackServiceResolver(AvahiServiceResolver *resolver, AvahiIfIndex interface, AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *host_name, const AvahiAddress *address, uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags, void *userdata); // Convert members static QStringList convertTxtList(AvahiStringList *txt); static QAbstractSocket::NetworkLayerProtocol convertProtocol(const AvahiProtocol &protocol); QtAvahiClient *client; AvahiServiceTypeBrowser *serviceTypeBrowser; QHash serviceBrowserTable; QList m_serviceResolvers; }; #endif // QTAVAHISERVICEBROWSERPRIVATE_H