Lines Matching refs:to

7 * Handle POSIX signals sent to the LDAP server / child processes to properly shutdown existing clients.
8 * Allow a PSR-3 compatible logging instance to be set on the LDAP server for info / error events.
12 * Add the ability to run the LDAP server / client over a UNIX socket.
13 * Add the ability to run the LDAP server over an SSL / TLS only socket.
14 * Add the ability for the server to handle client paging requests via a handler.
16 * The LDAP server handlers can now be set as a class instance in addition to the class FQCN string.
17 * When setting the options on the LdapClient you can now choose to force a disconnect at the same time.
30 * Server request handlers can now return their own RootDSE if they choose to.
31 * Added an isValid() method to the Dn class.
34 * Implemented PHPStan and made fixes necessary to bump it to the max level.
35 * Introduced code coverage to CI runs.
44 * Add a range retrieval helper class to make it easier to work with ranged results from Active Directory.
45 * Add a "rename()" convenience method to the LdapClient.
46 * Add a "move()" convenience method to the LdapClient.
47 * Add a "getDescription()" method to the Attribute class to retrieve the attribute with all options.
48 * Add a "getOptions()" method the the Attribute class to iterate through options for an attribute.
49 * Add a "fromArray" method to make constructing entry objects from arrays sound more natural.
54 * Moved the Socket classes to their own library so it can be used in other projects.
59 * Moved ASN.1 to its own library.
60 * Add a create convenience method to the LdapClient to create a single LDAP entry.
61 * Add a read convenience method to the LdapClient to return a single LDAP entry.
62 * Add an update convenience method to the LdapClient to update a single LDAP entry.
63 * Add a delete convenience method to the LdapClient to delete a single LDAP entry.
64 * Rename searchRead() and searchList() operation methods to read() and list().
72 * Better handle remote disconnects / failed reads in the client to prevent hanging under some circumstances.
73 * Add magic methods to Entry objects for attribute access.
74 * Add an idle_timeout setting to the LDAP server. Default to 600 seconds.
78 * Renamed to FreeDSx to avoid naming confusion with the phpds extension.
82 * Add a compare() operation method helper to the LdapClient.