37 lines
728 B
C++
37 lines
728 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2023 Albert Vaca Cintora <albertvaka@gmail.com>
|
|
*
|
|
* 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 <QObject>
|
|
|
|
#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 onStart();
|
|
void onStop();
|
|
|
|
public Q_SLOTS:
|
|
void onNetworkChange();
|
|
|
|
private:
|
|
MdnsWrapper::Discoverer mdnsDiscoverer;
|
|
MdnsWrapper::Announcer mdnsAnnouncer;
|
|
};
|
|
|
|
#endif // KDECONNECT_SERVER_H
|