EVT_ModDNEventData

Contains the data associated with Modify DN operation with the LDAP Server.

Structure

  typedef struct
  {
     EVT_ConnectionEventData *connectionData;
     unsigned int msgID;
     unsigned int time;
     char *bindDN;
     char *oldRDN;
     char *newRDN;
     char *className;
     char **controlOID;
     int resultCode;
  }EVT_ModDNEventData;
  

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 the operation.

bindDN

Specifies the DN that binds with eDirectory.

oldRDN

Points to the old relative distinguished name of the entry.

newRDN

Points to the new relative distinguished name to give the entry.

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.