Attribute permissions
C
#define PERMISSION_READ 0x01 #define PERMISSION_READ_AUTHEN 0x02 #define PERMISSION_READ_AUTHEN_SC 0x04 #define PERMISSION_READ_ENC 0x08 #define PERMISSION_WRITE 0x10 #define PERMISSION_WRITE_AUTHEN 0x20 #define PERMISSION_WRITE_AUTHEN_SC 0x40 #define PERMISSION_WRITE_ENC 0x80
Description
Defines the attribute permissions.
Macro Definition
Macro | Description |
---|---|
PERMISSION_READ | Read access is premitted. |
PERMISSION_READ_AUTHEN | Read access requires authenticated encryption with MITM (Man-In-The-Middle) protection. |
PERMISSION_READ_AUTHEN_SC | Read access requires LE Secure Connections with authenticated encryption and MITM protection. |
PERMISSION_READ_ENC | Read access requires encryption without MITM protection. |
PERMISSION_WRITE | Write access is premitted. |
PERMISSION_WRITE_AUTHEN | Write access requires authenticated encryption with MITM protection. |
PERMISSION_WRITE_AUTHEN_SC | Write access requires LE Secure Connections with authenticated encryption and MITM protection. |
PERMISSION_WRITE_ENC | Write access requires encryption without MITM protection. |