EVT_UpdateEventData

Contains the data associated with Add/Modify/Delete operation with the LDAP Server.

Structure

  typedef struct
  {
     EVT_ConnectionEventData *connectionData;
     unsigned int msgID;
     unsigned int time ;
     unsigned int operation;
     char *bindDN;
     char *entryDN;
     char *className;
     char **controlOID ;
     int resultCode;
  }EVT_UpdateEventData;
  

Fields

connectionData

Pointer to a EVT_ConnectionEventData structure, which contains the connection data.

msgID

Specifies the message ID of the operation.

time

Specifies the time of operation.

operation

Specifies the type of request: Add, Delete, or Modify.

bindDN

Specifies the DN that binds with eDirectory.

entryDN

Specifies the DN of the entry that was acted upon.

className

Specifies the class name of the object that was acted upon.

controlOID

Pointer to an array of strings representing the OIDs of the controls.

resultCode

Set to the return code by the LDAP Server.

resultCode is zero if the operation is success, and non-zero if the operation is failure.