kdeconnect-kde/core/backends/loopback/loopbackdevicelink.cpp

40 lines
998 B
C++
Raw Permalink Normal View History

2013-06-06 04:57:06 +01:00
/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
2013-06-06 04:57:06 +01:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2013-06-06 04:57:06 +01:00
*/
2013-08-28 22:47:39 +01:00
#include "loopbackdevicelink.h"
#include "kdeconnectconfig.h"
#include "loopbacklinkprovider.h"
LoopbackDeviceLink::LoopbackDeviceLink(LoopbackLinkProvider *parent)
: DeviceLink(KdeConnectConfig::instance().deviceId(), parent)
{
}
bool LoopbackDeviceLink::sendPacket(NetworkPacket &input)
{
2023-06-27 12:15:11 +01:00
NetworkPacket output;
NetworkPacket::unserialize(input.serialize(), &output);
// LoopbackDeviceLink does not need deviceTransferInfo
if (input.hasPayload()) {
bool b = input.payload()->open(QIODevice::ReadOnly);
Q_ASSERT(b);
output.setPayload(input.payload(), input.payloadSize());
}
Q_EMIT receivedPacket(output);
return true;
}
DeviceInfo LoopbackDeviceLink::deviceInfo() const
{
return KdeConnectConfig::instance().deviceInfo();
}
#include "moc_loopbackdevicelink.cpp"