/** * SPDX-FileCopyrightText: 2023 Albert Vaca Cintora * * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #ifndef KDECONNECT_MDNS_DISCOVERY_H #define KDECONNECT_MDNS_DISCOVERY_H #include #include "kdeconnectcore_export.h" #include "mdns_wrapper.h" class LanLinkProvider; class KDECONNECTCORE_EXPORT MdnsDiscovery : public QObject { Q_OBJECT public: explicit MdnsDiscovery(LanLinkProvider *parent); ~MdnsDiscovery(); void startDiscovering(); void stopDiscovering(); void stopAnnouncing(); void startAnnouncing(); private: LanLinkProvider *lanLinkProvider = nullptr; MdnsWrapper mdnsWrapper; }; #endif // KDECONNECT_SERVER_H