diff --git a/core/backends/bluetooth/bluetoothdevicelink.cpp b/core/backends/bluetooth/bluetoothdevicelink.cpp index df695e7fb..b838e2f40 100644 --- a/core/backends/bluetooth/bluetoothdevicelink.cpp +++ b/core/backends/bluetooth/bluetoothdevicelink.cpp @@ -89,3 +89,8 @@ void BluetoothDeviceLink::dataReceived() QMetaObject::invokeMethod(this, &BluetoothDeviceLink::dataReceived, Qt::QueuedConnection); } } + +QSslCertificate BluetoothDeviceLink::certificate() const +{ + return {}; // TODO Not sure what to do here. For LanDeviceLink we use the SSL connection's certificate, but we don't have that here +} diff --git a/core/backends/bluetooth/bluetoothdevicelink.h b/core/backends/bluetooth/bluetoothdevicelink.h index 23c8e3d55..cd90747d7 100644 --- a/core/backends/bluetooth/bluetoothdevicelink.h +++ b/core/backends/bluetooth/bluetoothdevicelink.h @@ -10,6 +10,7 @@ #include #include #include +#include #include "../devicelink.h" #include "../devicelinereader.h" @@ -33,6 +34,7 @@ public: virtual void userRequestsUnpair() override; virtual bool linkShouldBeKeptAlive() override; + QSslCertificate certificate() const override; private Q_SLOTS: void dataReceived();