EVT_SearchEntryResponseEventData

Contains the data associated with response per entry of a Search operation with the LDAP Server.

Structure

  typedef struct
  {
     EVT_ConnectionEventData *connectionData;
     unsigned int msgID;
     unsigned int time;
     char* entryDN;
     char* className;
     char **attrs;
     int resultCode;
  }EVT_SearchResponseEventData;
  

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.

entryDN

Specifies the DN of the entry that was acted upon.

className

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

base

The base parameter specifies the container in the directory, where the search begins.

attrs

The attribute parameter specifies which attributes to return with each matching entry.

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.