/** * SPDX-FileCopyrightText: 2013 Albert Vaca * * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #ifndef LANDEVICELINK_H #define LANDEVICELINK_H #include #include #include #include #include "backends/devicelink.h" #include "compositeuploadjob.h" #include "deviceinfo.h" #include "uploadjob.h" #include class LanLinkProvider; class KDECONNECTCORE_EXPORT LanDeviceLink : public DeviceLink { Q_OBJECT public: LanDeviceLink(const DeviceInfo &deviceInfo, LanLinkProvider *parent, QSslSocket *socket); void reset(QSslSocket *socket); bool sendPacket(NetworkPacket &np) override; DeviceInfo deviceInfo() const override { return m_deviceInfo; } QHostAddress hostAddress() const; private Q_SLOTS: void dataReceived(); private: QSslSocket *m_socket; QPointer m_compositeUploadJob; DeviceInfo m_deviceInfo; }; #endif