Octet_List_T

Contains the eDirectory information for the attributes that use the Octet List syntax.

Service:NDS
Defined In:nwdsattr.h and nwdsattr.inc

Structure

C

  typedef struct _octet_list 
  { 
     struct _octet_list N_FAR   *next; 
     nuint32                     length; 
     pnuint8                     data; 
  } Octet_List_T;
  

Pascal

  Octet_List_T = Record 
     next: pOctet_List_T; 
     length : nuint32; 
     data : pnuint8 
  End;
  

Fields

next

Points to the next string in the list.

length

Specifies the length, in bytes, of the data field.

data

Points to the data string.