mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
ITS#7197 fix olcTLSVerifyClient keywords
This commit is contained in:
parent
ce54dabb1b
commit
6d5dac4fa2
1 changed files with 3 additions and 1 deletions
|
|
@ -1259,9 +1259,11 @@ static slap_verbmasks crlkeys[] = {
|
|||
|
||||
static slap_verbmasks vfykeys[] = {
|
||||
{ BER_BVC("never"), LDAP_OPT_X_TLS_NEVER },
|
||||
{ BER_BVC("demand"), LDAP_OPT_X_TLS_DEMAND },
|
||||
{ BER_BVC("allow"), LDAP_OPT_X_TLS_ALLOW },
|
||||
{ BER_BVC("try"), LDAP_OPT_X_TLS_TRY },
|
||||
{ BER_BVC("demand"), LDAP_OPT_X_TLS_DEMAND },
|
||||
{ BER_BVC("hard"), LDAP_OPT_X_TLS_HARD },
|
||||
{ BER_BVC("true"), LDAP_OPT_X_TLS_HARD },
|
||||
{ BER_BVNULL, 0 }
|
||||
};
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue