2010-03-28 22:10:10 +00:00
<?xml version="1.0" encoding="utf-8"?>
2009-07-11 07:50:41 +00:00
<!-- $Revision$ -->
2018-12-10 15:38:54 +00:00
<appendix xml:id= "ldap.constants" xmlns= "http://docbook.org/ns/docbook" xmlns:xlink= "http://www.w3.org/1999/xlink" >
2002-07-22 16:12:52 +00:00
&reftitle.constants;
&extension.constants;
<variablelist >
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-deref-never" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_DEREF_NEVER</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Alias dereferencing rule - Never.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-deref-searching" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_DEREF_SEARCHING</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Alias dereferencing rule - Searching.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-deref-finding" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_DEREF_FINDING</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Alias dereferencing rule - Finding.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-deref-always" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_DEREF_ALWAYS</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Alias dereferencing rule - Always.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-deref" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_DEREF</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies alternative rules for following aliases at the server.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-sizelimit" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_SIZELIMIT</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
2010-11-19 20:58:22 +00:00
<para >
Specifies the maximum number of entries that can be
returned on a search operation.
</para>
<note >
<simpara >
The actual size limit for operations is also bounded
by the server's configured maximum number of return entries.
The lesser of these two settings is the actual size limit.
</simpara>
</note>
2002-07-22 16:12:52 +00:00
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-timelimit" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_TIMELIMIT</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies the number of seconds to wait for search results.
2002-07-22 16:12:52 +00:00
</simpara>
2010-11-19 20:58:22 +00:00
<note >
<simpara >
The actual time limit for operations is also bounded
by the server's configured maximum time.
The lesser of these two settings is the actual time limit.
</simpara>
</note>
2002-07-22 16:12:52 +00:00
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-network-timeout" >
2007-10-13 15:15:09 +00:00
<term >
<constant > LDAP_OPT_NETWORK_TIMEOUT</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2007-10-13 15:15:09 +00:00
</term>
<listitem >
<simpara >
2008-03-07 09:54:57 +00:00
Option for <function > ldap_set_option</function> to allow setting network timeout.
2007-10-13 15:15:09 +00:00
(Available as of PHP 5.3.0)
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-protocol-version" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_PROTOCOL_VERSION</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies the LDAP protocol to be used (V2 or V3).
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-error-number" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_ERROR_NUMBER</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Latest session error number.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-referrals" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_REFERRALS</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies whether to automatically follow referrals returned
by the LDAP server.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-restart" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_RESTART</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Determines whether or not the connection should be implicitly restarted.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-host-name" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_HOST_NAME</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Sets/gets a space-separated of hosts when trying to connect.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-error-string" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_ERROR_STRING</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Alias of <constant > LDAP_OPT_DIAGNOSTIC_MESSAGE</constant> .
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2016-10-06 09:59:35 +00:00
<varlistentry xml:id= "constant.ldap-opt-diagnostic-message" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_DIAGNOSTIC_MESSAGE</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Gets the latest session error message.
2016-10-06 09:59:35 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-matched-dn" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_MATCHED_DN</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Sets/gets the matched DN associated with the connection.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-server-controls" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_SERVER_CONTROLS</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies a default list of server controls to be sent with each request.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-client-controls" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_CLIENT_CONTROLS</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies a default list of client controls to be processed with each request.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.ldap-opt-debug-level" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_DEBUG_LEVEL</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2010-11-19 20:58:22 +00:00
Specifies a bitwise level for debug traces.
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2016-10-06 09:59:35 +00:00
<varlistentry xml:id= "constant.ldap-opt-x-keepalive-idle" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_KEEPALIVE_IDLE</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
Specifies the number of seconds a connection needs to remain idle before TCP starts sending keepalive probes.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-keepalive-probes" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_KEEPALIVE_PROBES</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
Specifies the maximum number of keepalive probes TCP should send before dropping the connection.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-keepalive-interval" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_KEEPALIVE_INTERVAL</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
Specifies the interval in seconds between individual keepalive probes.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-cacertdir" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_CACERTDIR</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the path of the directory containing CA certificates.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-cacertfile" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_CACERTFILE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the full-path of the CA certificate file.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-certfile" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_CERTFILE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the full-path of the certificate file.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-cipher-suite" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_CIPHER_SUITE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the allowed cipher suite.
</simpara>
</listitem>
</varlistentry>
2016-10-06 10:16:31 +00:00
<varlistentry xml:id= "constant.ldap-opt-x-tls-crlcheck" >
2016-10-06 09:59:35 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_CRLCHECK</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
Specifies the CRL evaluation strategy. This must be one of: <constant > LDAP_OPT_X_TLS_CRL_NONE</constant> ,<constant > LDAP_OPT_X_TLS_CRL_PEER</constant> , <constant > LDAP_OPT_X_TLS_CRL_ALL</constant> .
</simpara>
<note >
<simpara >
This option is only valid for OpenSSL.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-crlfile" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_CRLFILE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the full-path of the CRL file.
</simpara>
<note >
<simpara >
This option is only valid for GnuTLS.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-dhfile" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_DHFILE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the full-path of the file containing the parameters for Diffie-Hellman ephemeral key exchange.
</simpara>
<note >
<simpara >
This option is ignored by GnuTLS and Mozilla NSS.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-keyfile" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_KEYFILE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
Specifies the full-path of the certificate key file.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-protocol-min" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_PROTOCOL_MIN</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
Specifies the minimum protocol version. This can be one of: <constant > LDAP_OPT_X_TLS_PROTOCOL_SSL2</constant> ,<constant > LDAP_OPT_X_TLS_PROTOCOL_SSL3</constant> , <constant > LDAP_OPT_X_TLS_PROTOCOL_TLS1_0</constant> , <constant > LDAP_OPT_X_TLS_PROTOCOL_TLS1_1</constant> , <constant > LDAP_OPT_X_TLS_PROTOCOL_TLS1_2</constant>
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-random-file" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_RANDOM_FILE</constant>
2016-10-06 09:59:35 +00:00
(<type > string</type> )
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
Sets/gets the random file when one of the system default ones are not available.
2016-10-06 09:59:35 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-opt-x-tls-require-cert" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_OPT_X_TLS_REQUIRE_CERT</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2016-10-06 09:59:35 +00:00
</term>
<listitem >
<simpara >
Specifies the certificate checking checking strategy. This must be one of: <constant > LDAP_OPT_X_TLS_NEVER</constant> ,<constant > LDAP_OPT_X_TLS_HARD</constant> , <constant > LDAP_OPT_X_TLS_DEMAND</constant> ,
<constant > LDAP_OPT_X_TLS_ALLOW</constant> , <constant > LDAP_OPT_X_TLS_TRY</constant> .
2016-12-19 14:02:21 +00:00
(Available as of PHP 7.0.0)
2016-10-06 09:59:35 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.gslc-ssl-no-auth" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > GSLC_SSL_NO_AUTH</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
SSL Authentication Mode - No authentication required. (Only for Oracle LDAP)
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.gslc-ssl-oneway-auth" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > GSLC_SSL_ONEWAY_AUTH</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
SSL Authentication Mode - Only server authentication required. (Only for Oracle LDAP)
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2012-02-28 13:22:09 +00:00
<varlistentry xml:id= "constant.gslc-ssl-twoway-auth" >
2002-07-22 16:12:52 +00:00
<term >
2018-12-03 15:27:09 +00:00
<constant > GSLC_SSL_TWOWAY_AUTH</constant>
2020-11-02 15:39:04 +00:00
(<type > int</type> )
2002-07-22 16:12:52 +00:00
</term>
<listitem >
<simpara >
2017-11-29 21:09:22 +00:00
SSL Authentication Mode - Both server and client authentication required. (Only for Oracle LDAP)
2002-07-22 16:12:52 +00:00
</simpara>
</listitem>
</varlistentry>
2018-12-03 15:27:09 +00:00
2017-11-29 21:20:12 +00:00
<varlistentry xml:id= "constant.ldap-exop-start-tls" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_EXOP_START_TLS</constant>
2017-12-05 14:15:16 +00:00
(<type > string</type> )
2017-11-29 21:20:12 +00:00
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Extended Operation constant - Start TLS (<link xlink:href= "&url.rfc;4511" > RFC 4511</link> ).
2017-11-29 21:20:12 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-exop-modify-passwd" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_EXOP_MODIFY_PASSWD</constant>
2017-12-05 14:15:16 +00:00
(<type > string</type> )
2017-11-29 21:20:12 +00:00
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Extended Operation constant - Modify password (<link xlink:href= "&url.rfc;3062" > RFC 3062</link> ).
2017-11-29 21:20:12 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-exop-refresh" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_EXOP_REFRESH</constant>
2017-12-05 14:15:16 +00:00
(<type > string</type> )
2017-11-29 21:20:12 +00:00
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Extended Operation Constant - Refresh (<link xlink:href= "&url.rfc;2589" > RFC 2589</link> ).
2017-11-29 21:20:12 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-exop-who-am-i" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_EXOP_WHO_AM_I</constant>
2017-12-05 14:15:16 +00:00
(<type > string</type> )
2017-11-29 21:20:12 +00:00
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Extended Operation Constant - WHOAMI (<link xlink:href= "&url.rfc;4532" > RFC 4532</link> ).
2017-11-29 21:20:12 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-exop-turn" >
<term >
2018-12-03 15:27:09 +00:00
<constant > LDAP_EXOP_TURN</constant>
2017-12-05 14:15:16 +00:00
(<type > string</type> )
2017-11-29 21:20:12 +00:00
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Extended Operation Constant - Turn (<link xlink:href= "&url.rfc;4531" > RFC 4531</link> ).
2017-11-29 21:20:12 +00:00
</simpara>
</listitem>
</varlistentry>
2018-12-03 15:27:09 +00:00
<varlistentry xml:id= "constant.ldap-control-managedsait" >
<term >
<constant > LDAP_CONTROL_MANAGEDSAIT</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Manage DSA IT (<link xlink:href= "&url.rfc;3296" > RFC 3296</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-proxy-authz" >
<term >
<constant > LDAP_CONTROL_PROXY_AUTHZ</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Proxied Authorization (<link xlink:href= "&url.rfc;4730" > RFC 4370</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-subentries" >
<term >
<constant > LDAP_CONTROL_SUBENTRIES</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Subentries (<link xlink:href= "&url.rfc;3672" > RFC 3672</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-valuesreturnfilter" >
<term >
<constant > LDAP_CONTROL_VALUESRETURNFILTER</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Filter returned values (<link xlink:href= "&url.rfc;3876" > RFC 3876</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-assert" >
<term >
<constant > LDAP_CONTROL_ASSERT</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Assertion (<link xlink:href= "&url.rfc;45282" > RFC 4528</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-pre-read" >
<term >
<constant > LDAP_CONTROL_PRE_READ</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Pre read (<link xlink:href= "&url.rfc;4527" > RFC 4527</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-post-read" >
<term >
<constant > LDAP_CONTROL_POST_READ</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Post read (<link xlink:href= "&url.rfc;4527" > RFC 4527</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-sortrequest" >
<term >
<constant > LDAP_CONTROL_SORTREQUEST</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Sort request (<link xlink:href= "&url.rfc;2891" > RFC 2891</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-sortresponse" >
<term >
<constant > LDAP_CONTROL_SORTRESPONSE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Sort response (<link xlink:href= "&url.rfc;2891" > RFC 2891</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-pagedresults" >
<term >
<constant > LDAP_CONTROL_PAGEDRESULTS</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Paged results (<link xlink:href= "&url.rfc;2696" > RFC 2696</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-authzid-request" >
<term >
<constant > LDAP_CONTROL_AUTHZID_REQUEST</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Authorization Identity Request (<link xlink:href= "&url.rfc;3829" > RFC 3829</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-authzid-response" >
<term >
<constant > LDAP_CONTROL_AUTHZID_RESPONSE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Authorization Identity Response (<link xlink:href= "&url.rfc;3829" > RFC 3829</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-sync" >
<term >
<constant > LDAP_CONTROL_SYNC</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Content Synchronization Operation (<link xlink:href= "&url.rfc;4533" > RFC 4533</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-sync-state" >
<term >
<constant > LDAP_CONTROL_SYNC_STATE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Content Synchronization Operation State (<link xlink:href= "&url.rfc;4533" > RFC 4533</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-sync-done" >
<term >
<constant > LDAP_CONTROL_SYNC_DONE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Content Synchronization Operation Done (<link xlink:href= "&url.rfc;4533" > RFC 4533</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-dontusecopy" >
<term >
<constant > LDAP_CONTROL_DONTUSECOPY</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:38:54 +00:00
Control Constant - Don't Use Copy (<link xlink:href= "&url.rfc;6171" > RFC 6171</link> ).
2018-12-10 15:24:21 +00:00
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-passwordpolicyrequest" >
<term >
<constant > LDAP_CONTROL_PASSWORDPOLICYREQUEST</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Password Policy Request.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-passwordpolicyresponse" >
<term >
<constant > LDAP_CONTROL_PASSWORDPOLICYRESPONSE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Password Policy Response.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-x-incremental-values" >
<term >
<constant > LDAP_CONTROL_X_INCREMENTAL_VALUES</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Active Directory Incremental Values.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-x-domain-scope" >
<term >
<constant > LDAP_CONTROL_X_DOMAIN_SCOPE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Active Directory Domain Scope.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-x-permissive-modify" >
<term >
<constant > LDAP_CONTROL_X_PERMISSIVE_MODIFY</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Active Directory Permissive Modify.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-x-search-options" >
<term >
<constant > LDAP_CONTROL_X_SEARCH_OPTIONS</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Active Directory Search Options.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-x-tree-delete" >
<term >
<constant > LDAP_CONTROL_X_TREE_DELETE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Active Directory Tree Delete.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-x-extended-dn" >
<term >
<constant > LDAP_CONTROL_X_EXTENDED_DN</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Active Directory Extended DN.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-vlvrequest" >
<term >
<constant > LDAP_CONTROL_VLVREQUEST</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Virtual List View Request.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id= "constant.ldap-control-vlvresponse" >
<term >
<constant > LDAP_CONTROL_VLVRESPONSE</constant>
(<type > string</type> )
</term>
<listitem >
<simpara >
2018-12-10 15:24:21 +00:00
Control Constant - Virtual List View Response.
Available as of PHP 7.3.0.
2018-12-03 15:27:09 +00:00
</simpara>
</listitem>
</varlistentry>
2002-07-22 16:12:52 +00:00
</variablelist>
2007-12-23 20:56:25 +00:00
</appendix>
2002-07-22 16:12:52 +00:00
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
2009-09-25 07:04:39 +00:00
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
2002-07-22 16:12:52 +00:00
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->