MQ LDAP Context Information
The exit uses the following data structure for context information.
- MQNLDAPCTX
- The MQNLDAPCTX structure has the following C prototype.
-
typedef struct tagMQNLDAPCTX MQNLDAPCTX;
typedef MQNLDAPCTX MQPOINTER PMQNLDAPCTX;
struct tagMQNLDAPCTX
{
MQCHAR4 StrucId; /* Structure identifier */
MQLONG Version; /* Structure version number */
LDAP * objectDirectory /* LDAP Instance */
MQLONG ldapVersion; /* Which LDAP version to use? */
MQLONG port; /* Port number for LDAP server*/
MQLONG sizeLimit; /* Size limit */
MQBOOL ssl; /* SSL enabled? */
MQCHAR * host; /* Hostname of LDAP server */
MQCHAR * password; /* Password of LDAP server */
MQCHAR * searchFilter; /* LDAP search filter */
MQCHAR * baseDN; /* Base Distinguished Name */
MQCHAR * charSet; /* Character set */
};
Parent topic: Sample program for Connection Endpoint Lookup (CEPL)