diff options
author | Stig Venaas <venaas@php.net> | 2001-01-07 13:03:11 +0000 |
---|---|---|
committer | Stig Venaas <venaas@php.net> | 2001-01-07 13:03:11 +0000 |
commit | 1b3385cad8627c516e2b1a088dec1be4a2a7a2be (patch) | |
tree | eeeb6e54f22de835942d8ef62433f5ace5ff8ba3 /ext/ldap/php_ldap.h | |
parent | 3f2a3a9b01c570b65bfa29cba43bb10b66f14200 (diff) | |
download | php-git-1b3385cad8627c516e2b1a088dec1be4a2a7a2be.tar.gz |
Added LDAPv3 stuff. ldap_search() now treats LDAP_ADMINLIMIT_EXCEEDED like
LDAP_SIZELIMIT_EXCEEDED and returns referral results.
Added new functions ldap_parse_result(), ldap_first_reference(),
ldap_next_reference() and ldap_parse_reference() that among other things
make referrals and search references accessible.
@- Changed ldap_search() and added functions ldap_parse_result(),
@ ldap_first_reference(), ldap_next_reference() and ldap_parse_reference()
@ to cope with LDAPv3 stuff like referrals and references. (Stig Venaas)
Diffstat (limited to 'ext/ldap/php_ldap.h')
-rw-r--r-- | ext/ldap/php_ldap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/ldap/php_ldap.h b/ext/ldap/php_ldap.h index 5651321d83..bfe73edf94 100644 --- a/ext/ldap/php_ldap.h +++ b/ext/ldap/php_ldap.h @@ -84,6 +84,10 @@ PHP_FUNCTION(ldap_compare); #if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP PHP_FUNCTION(ldap_get_option); PHP_FUNCTION(ldap_set_option); +PHP_FUNCTION(ldap_parse_result); +PHP_FUNCTION(ldap_first_reference); +PHP_FUNCTION(ldap_next_reference); +PHP_FUNCTION(ldap_parse_reference); #endif #ifdef STR_TRANSLATION |