mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
Add PHPDoc to Ldap\Connection's encryption consts
This commit is contained in:
parent
17393a7b41
commit
1b9ddaacac
@ -30,7 +30,19 @@ class Connection
|
|||||||
const LDAP_SIZELIMIT_EXCEEDED = 4;
|
const LDAP_SIZELIMIT_EXCEEDED = 4;
|
||||||
const LDAP_ADMINLIMIT_EXCEEDED = 11;
|
const LDAP_ADMINLIMIT_EXCEEDED = 11;
|
||||||
const PAGE_SIZE = 1000;
|
const PAGE_SIZE = 1000;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encrypt connection using STARTTLS (upgrading a plain text connection)
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
const STARTTLS = 'tls';
|
const STARTTLS = 'tls';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encrypt connection using LDAP over SSL (using a separate port)
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
const SSL = 'ssl';
|
const SSL = 'ssl';
|
||||||
|
|
||||||
protected $ds;
|
protected $ds;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user