kdeconnect-kde/core/backends/lan/landevicelink.h

50 lines
1 KiB
C
Raw Permalink Normal View History

/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
2013-08-28 22:47:39 +01:00
#ifndef LANDEVICELINK_H
#define LANDEVICELINK_H
#include <QObject>
#include <QPointer>
#include <QSslSocket>
#include <QString>
2016-07-05 13:27:53 +01:00
#include "backends/devicelink.h"
#include "compositeuploadjob.h"
#include "deviceinfo.h"
#include "uploadjob.h"
#include <kdeconnectcore_export.h>
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<CompositeUploadJob> m_compositeUploadJob;
DeviceInfo m_deviceInfo;
};
#endif