Contains the eDirectory information for the attributes that use the Octet List syntax.
typedef struct _octet_list
{
struct _octet_list N_FAR *next;
nuint32 length;
pnuint8 data;
} Octet_List_T;
Octet_List_T = Record
next: pOctet_List_T;
length : nuint32;
data : pnuint8
End;
Points to the next string in the list.
Specifies the length, in bytes, of the data field.
Points to the data string.