From d1a0ca6b9ab0ec75ff769c87801b2c8fe7dded2f Mon Sep 17 00:00:00 2001 From: Amrouche Hamza Date: Tue, 9 Jul 2019 08:08:53 +0200 Subject: [PATCH] [LDAP] add new option implemented in php 7.1 --- .../Ldap/Adapter/ExtLdap/ConnectionOptions.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Symfony/Component/Ldap/Adapter/ExtLdap/ConnectionOptions.php b/src/Symfony/Component/Ldap/Adapter/ExtLdap/ConnectionOptions.php index 304ba7801b..4f01c6f3ca 100644 --- a/src/Symfony/Component/Ldap/Adapter/ExtLdap/ConnectionOptions.php +++ b/src/Symfony/Component/Ldap/Adapter/ExtLdap/ConnectionOptions.php @@ -40,10 +40,27 @@ final class ConnectionOptions const DEBUG_LEVEL = 0x5001; const TIMEOUT = 0x5002; const NETWORK_TIMEOUT = 0x5005; + const X_TLS_CACERTDIR = 0x6003; + const X_TLS_CERTFILE = 0x6004; + const X_TLS_CRL_ALL = 0x02; + const X_TLS_CRL_NONE = 0x00; + const X_TLS_CRL_PEER = 0x01; + const X_TLS_KEYFILE = 0x6005; + const X_TLS_REQUIRE_CERT = 0x6006; + const X_TLS_PROTOCOL_MIN = 0x6007; + const X_TLS_CIPHER_SUITE = 0x6008; + const X_TLS_RANDOM_FILE = 0x6009; + const X_TLS_CRLFILE = 0x6010; + const X_TLS_PACKAGE = 0x6011; + const X_TLS_CRLCHECK = 0x600b; + const X_TLS_DHFILE = 0x600e; const X_SASL_MECH = 0x6100; const X_SASL_REALM = 0x6101; const X_SASL_AUTHCID = 0x6102; const X_SASL_AUTHZID = 0x6103; + const X_KEEPALIVE_IDLE = 0x6300; + const X_KEEPALIVE_PROBES = 0x6301; + const X_KEEPALIVE_INTERVAL = 0x6302; public static function getOptionName($name) {