summaryrefslogtreecommitdiff
path: root/gatoperipheral.cpp
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2014-05-10 23:56:23 +0200
committerJavier S. Pedro <maemo@javispedro.com>2014-05-10 23:56:23 +0200
commitff9fd605200825322beed8f86df765b70370b9d3 (patch)
tree741ff558aa3363396d8630da0d6c681e499ba5c5 /gatoperipheral.cpp
parent55496b91d2b144c5b8aafd20a8c8332aee4607ab (diff)
downloadlibgato-ff9fd605200825322beed8f86df765b70370b9d3.tar.gz
libgato-ff9fd605200825322beed8f86df765b70370b9d3.zip
bluez5 keeps removing APIs, so switch to our own
Diffstat (limited to 'gatoperipheral.cpp')
-rw-r--r--gatoperipheral.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/gatoperipheral.cpp b/gatoperipheral.cpp
index 0a1f723..0228471 100644
--- a/gatoperipheral.cpp
+++ b/gatoperipheral.cpp
@@ -41,7 +41,8 @@ enum EIRDataFields {
EIRTxPowerLevel = 0x0A,
EIRDeviceClass = 0x0D,
EIRSecurityManagerTKValue = 0x10,
- EIRSecurityManagerOutOfBandFlags = 0x11
+ EIRSecurityManagerOutOfBandFlags = 0x11,
+ EIRSolicitedUUID128List = 0x15
};
GatoPeripheral::GatoPeripheral(const GatoAddress &addr, QObject *parent) :
@@ -127,6 +128,10 @@ void GatoPeripheral::parseEIR(quint8 data[], int len)
case EIRCompleteLocalName:
d->parseName(true, &data[pos + 1], item_len - 1);
break;
+ case EIRTxPowerLevel:
+ case EIRSolicitedUUID128List:
+ qDebug() << "Unhandled EIR data type" << type;
+ break;
default:
qWarning() << "Unknown EIR data type" << type;
break;