You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: generated/ldap.php
+20-20Lines changed: 20 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -239,36 +239,36 @@ function ldap_exop_whoami($ldap)
239
239
240
240
241
241
/**
242
-
* Performs an extended operation on the specified link with
243
-
* reqoid the OID of the operation and
244
-
* reqdata the data.
242
+
* Performs an extended operation on the specified ldap with
243
+
* request_oid the OID of the operation and
244
+
* request_data the data.
245
245
*
246
246
* @param resource $ldap An LDAP\Connection instance, returned by ldap_connect.
247
-
* @param string $reqoid The extended operation request OID. You may use one of LDAP_EXOP_START_TLS, LDAP_EXOP_MODIFY_PASSWD, LDAP_EXOP_REFRESH, LDAP_EXOP_WHO_AM_I, LDAP_EXOP_TURN, or a string with the OID of the operation you want to send.
248
-
* @param string $reqdata The extended operation request data. May be NULL for some operations like LDAP_EXOP_WHO_AM_I, may also need to be BER encoded.
249
-
* @param array|null $serverctrls Array of LDAP Controls to send with the request.
250
-
* @param string|null $retdata Will be filled with the extended operation response data if provided.
247
+
* @param string $request_oid The extended operation request OID. You may use one of LDAP_EXOP_START_TLS, LDAP_EXOP_MODIFY_PASSWD, LDAP_EXOP_REFRESH, LDAP_EXOP_WHO_AM_I, LDAP_EXOP_TURN, or a string with the OID of the operation you want to send.
248
+
* @param string $request_data The extended operation request data. May be NULL for some operations like LDAP_EXOP_WHO_AM_I, may also need to be BER encoded.
249
+
* @param array|null $controls Array of LDAP Controls to send with the request.
250
+
* @param string|null $response_data Will be filled with the extended operation response data if provided.
251
251
* If not provided you may use ldap_parse_exop on the result object
252
252
* later to get this data.
253
-
* @param string|null $retoid Will be filled with the response OID if provided, usually equal to the request OID.
254
-
* @return resource|bool When used with retdata, returns TRUE on success.
255
-
* When used without retdata, returns a result identifier.
253
+
* @param string|null $response_oid Will be filled with the response OID if provided, usually equal to the request OID.
254
+
* @return resource|bool When used with response_data, returns TRUE on success.
255
+
* When used without response_data, returns a result identifier.
0 commit comments