blob: 5484b857d80e2bccc6284ef2a436d7beca44fcf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QBLUETOOTH_H
#define QBLUETOOTH_H
#include <QtBluetooth/qtbluetoothglobal.h>
#include <QtCore/qglobal.h>
#include <QtCore/qtmetamacros.h>
#include <QtCore/qobject.h>
QT_BEGIN_NAMESPACE
namespace QBluetooth {
Q_NAMESPACE_EXPORT(Q_BLUETOOTH_EXPORT)
// TODO Qt 6: Merge these two enums? But note that ATT Authorization has no equivalent
// on the socket security level.
enum class Security {
NoSecurity = 0x00,
Authorization = 0x01,
Authentication = 0x02,
Encryption = 0x04,
Secure = 0x08
};
Q_ENUM_NS(Security)
Q_DECLARE_FLAGS(SecurityFlags, Security)
Q_DECLARE_OPERATORS_FOR_FLAGS(SecurityFlags)
enum class AttAccessConstraint {
AttAuthorizationRequired = 0x1,
AttAuthenticationRequired = 0x2,
AttEncryptionRequired = 0x4,
};
Q_ENUM_NS(AttAccessConstraint)
Q_DECLARE_FLAGS(AttAccessConstraints, AttAccessConstraint)
Q_DECLARE_OPERATORS_FOR_FLAGS(AttAccessConstraints)
}
typedef quint16 QLowEnergyHandle;
QT_END_NAMESPACE
#endif // QBLUETOOTH_H
|