]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Add nonstd cbind SASL secprop
authorHoward Chu <hyc@openldap.org>
Mon, 25 Jul 2022 16:14:07 +0000 (17:14 +0100)
committerQuanah Gibson-Mount <quanah@openldap.org>
Thu, 28 Jul 2022 15:46:07 +0000 (15:46 +0000)
For Cyrus SASL 2.2, https://github.com/cyrusimap/cyrus-sasl/commit/8735185e9d5550e0f11e1ce4b77e391a16e4145b

doc/man/man3/ldap_get_option.3
libraries/libldap/cyrus.c

index e6b0580da14765d00eaec7ede404a7b0a39b7002..b7ed9762e3e72f0621591217cb4594f28e42851d 100644 (file)
@@ -545,6 +545,7 @@ Legal values are:
 .BR passcred ,
 .BR forwardsec ,
 .BR noanonymous ,
+.BR nonstdcbind ,
 .BR minssf=<minssf> ,
 .BR maxssf=<maxssf> ,
 .BR maxbufsize=<maxbufsize> .
index cc925d349d2a7e28d1d82ac466e1b6965e6aaa7b..a227f9651da29a444e4842f8dbbbe232e313f5d2 100644 (file)
@@ -821,6 +821,9 @@ static struct {
        { BER_BVC("passcred"), SASL_SEC_PASS_CREDENTIALS, 0, 0 },
        { BER_BVC("forwardsec"), SASL_SEC_FORWARD_SECRECY, 0, 0 },
        { BER_BVC("noanonymous"), SASL_SEC_NOANONYMOUS, 0, 0 },
+#ifdef SASL_SEC_NONSTD_CBIND
+       { BER_BVC("nonstdcbind"), SASL_SEC_NONSTD_CBIND, 0, 0 },
+#endif
        { BER_BVC("minssf="), 0, GOT_MINSSF, 0 },
        { BER_BVC("maxssf="), 0, GOT_MAXSSF, INT_MAX },
        { BER_BVC("maxbufsize="), 0, GOT_MAXBUF, 65536 },