diff options
author | Stig Venaas <venaas@php.net> | 2001-10-09 21:14:14 +0000 |
---|---|---|
committer | Stig Venaas <venaas@php.net> | 2001-10-09 21:14:14 +0000 |
commit | de894ef0988fdc1f3d21af63ee52b016ee3b7fb4 (patch) | |
tree | 3173f2a3e9a48b3ac7e9fb9bc37a3ae3a6e02146 /ext/ldap/php_ldap.h | |
parent | 27fb33e8b7540befb0aad0ec1e439de8753888b2 (diff) | |
download | php-git-de894ef0988fdc1f3d21af63ee52b016ee3b7fb4.tar.gz |
Added ldap_start_tls() function
@- Added ldap_start_tls() function (Stig Venaas, patch by kuenne@rentec.com)
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 9404c82585..140111d71f 100644 --- a/ext/ldap/php_ldap.h +++ b/ext/ldap/php_ldap.h @@ -88,6 +88,10 @@ PHP_FUNCTION(ldap_parse_reference); PHP_FUNCTION(ldap_rename); #endif +#if LDAP_API_VERSION > 2000 +PHP_FUNCTION(ldap_start_tls); +#endif + #ifdef STR_TRANSLATION PHP_FUNCTION(ldap_t61_to_8859); PHP_FUNCTION(ldap_8859_to_t61); |