[LDAP] Add TIMEOUT Option to LDAP Connection Options

This commit is contained in:
Lucas Matte 2018-10-13 15:05:29 -04:00 committed by Nicolas Grekas
parent afb4244179
commit 2d88b89b1d
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ final class ConnectionOptions
const ERROR_STRING = 0x32;
const MATCHED_DN = 0x33;
const DEBUG_LEVEL = 0x5001;
const TIMEOUT = 0x5002;
const NETWORK_TIMEOUT = 0x5005;
const X_SASL_MECH = 0x6100;
const X_SASL_REALM = 0x6101;

View File

@ -5,6 +5,7 @@ CHANGELOG
-----
* added `EntryManager::applyOperations`
* Added timeout option to `ConnectionOptions`
4.1.0
-----