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

MacroDescription
PERMISSION_READRead access is premitted.
PERMISSION_READ_AUTHENRead access requires authenticated encryption with MITM (Man-In-The-Middle) protection.
PERMISSION_READ_AUTHEN_SCRead access requires LE Secure Connections with authenticated encryption and MITM protection.
PERMISSION_READ_ENCRead access requires encryption without MITM protection.
PERMISSION_WRITEWrite access is premitted.
PERMISSION_WRITE_AUTHENWrite access requires authenticated encryption with MITM protection.
PERMISSION_WRITE_AUTHEN_SCWrite access requires LE Secure Connections with authenticated encryption and MITM protection.
PERMISSION_WRITE_ENCWrite access requires encryption without MITM protection.