Attribute permissions
C
#define PERMISSION_READ (0x01U) #define PERMISSION_READ_AUTHEN (0x02U) #define PERMISSION_READ_AUTHEN_SC (0x04U) #define PERMISSION_READ_ENC (0x08U) #define PERMISSION_WRITE (0x10U) #define PERMISSION_WRITE_AUTHEN (0x20U) #define PERMISSION_WRITE_AUTHEN_SC (0x40U) #define PERMISSION_WRITE_ENC (0x80U)
Description
Defines the attribute permissions.
Macro Definition
Macro | Description |
---|---|
PERMISSION_READ | Read access is permitted. |
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 permitted. |
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. |