Registriert seit: 7. Aug 2008
Ort: Brandenburg
1.464 Beiträge
Delphi 12 Athens
|
AW: Umstellung LDAP auf SSL/TLS
17. Mai 2024, 17:22
Das ist das Beispiel das ich versuche nachzuprogrammieren.
Code:
// Verify that SSL is enabled on the connection.
// (returns LDAP_OPT_ON/_OFF).
printf("Checking if SSL is enabled\n");
returnCode = ldap_get_option(pLdapConnection,LDAP_OPT_SSL,(void*)&lv);
if (returnCode != LDAP_SUCCESS)
goto FatalExit;
Und genau an der Stelle komme ich jetzt nicht weiter.
|