summaryrefslogtreecommitdiff
path: root/ext/ldap
Commit message (Collapse)AuthorAgeFilesLines
* bool not booleanRasmus Lerdorf2002-08-131-1/+1
|
* Made ldap_connect/bind/unbind() use zend_parse_parameters()Stig Venaas2002-08-051-90/+28
|
* Hopefully fixes build with IBM's LDAP libraryStig Venaas2002-07-091-0/+6
|
* - More error messages cleanupDerick Rethans2002-06-301-4/+4
|
* - Remove \nDerick Rethans2002-06-271-1/+1
|
* - Unify error messagesDerick Rethans2002-06-261-42/+43
|
* No need to have multiple AC_CHECK_FUNCS callsfoobar2002-06-241-2/+1
|
* Better not include ldap_parse_result() and ldap_start_tls() at all inStig Venaas2002-06-221-15/+8
| | | | | | the symbol table when they are not usable. Makes it possible to check on their usability.
* Added test for ldap_start_tls_s()Stig Venaas2002-06-222-1/+8
|
* - Fix ZTS build, see #17915.Markus Fischer2002-06-211-0/+1
|
* Reworked result resource handling so that result is not freed until allStig Venaas2002-05-041-53/+84
| | | | | | its result entry resources are freed @- Fixed resource bug in LDAP extension. (Stig Venaas)
* Fix TSRMLS_CC thingies.Derick Rethans2002-04-231-1/+1
|
* the 'setup' script was removed more than two years ago.jim winstead2002-03-161-8/+0
| | | | | these can be safely removed from the 4.2 branch, too.
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-122-8/+1
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* - Fix protos.Markus Fischer2002-02-111-35/+35
|
* Made ldap_modify() an alias for ldap_mod_replace(). The two were identical.Stig Venaas2002-01-042-11/+1
| | | | | #For more info, see my posting on php-dev Dec 25th.
* unbreak parallel searchStig Venaas2001-12-261-3/+5
|
* Added check for ldap_parse_reference() (needed for broken Solaris 2.8), andStig Venaas2001-12-252-24/+34
| | | | | report more detailed library version info in the info function.
* Made ldap_set_option work with NULL as link, added optionStig Venaas2001-12-232-11/+23
| | | | | | LDAP_OPT_DEBUG_LEVEL for those that support it, and made sure the rebind code is currently included for OpenLDAP only.
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* - Nuke REGISTER_MAIN_*. Extension maintainers please make sure I didn'tAndi Gutmans2001-12-031-19/+19
| | | | | - change something I wasn't supposed to. It should be fine IMO.
* ldap_first_attribute and ldap_next_attribute has been completely brokenStig Venaas2001-11-301-2/+3
| | | | | for 6 months!! Fixed (I think), might be a memory leak there...
* Unified the configure messages.foobar2001-11-301-4/+5
|
* Adding ldap_set_rebind_proc() for APIs with V3 3 arg variant, need moreStig Venaas2001-11-293-0/+111
| | | | | testing.
* Making the link resource point to a structure that contains the LDAPStig Venaas2001-11-291-110/+124
| | | | | | link, rather than point to it directly. # This makes it much easier to store and retrieve per-connection PHP state.
* Added ldap_sort() functionStig Venaas2001-11-212-0/+33
| | | | | @- Added ldap_sort() function. (Stig Venaas)
* Fixed some memory leaks and removed some unnecessary checks due toStig Venaas2001-11-141-16/+4
| | | | | ZEND_FETCH_RESOURCE returning on error
* Minor changes in ldap_connect(): fixed crash with OpenLDAP 2 libs whenStig Venaas2001-11-131-11/+9
| | | | | | called without args and also use ldap_init() rather than ldap_open(); simplified code a little
* Removed some old cruft (some commented code and non-used globals), fixedStig Venaas2001-11-132-25/+4
| | | | | | a proto typo, and make sure ldap_base_dn and ldap_filter are initialized in php_ldap_do_search()
* Fixed seg fault when using ldap_add (or modify) with value array notStig Venaas2001-11-051-1/+8
| | | | | | | | indexed as 0, 1, ... In some cases it didn't give seg fault, but used previously added value. Now gives warning. @- Made ldap_add (and modify) give warning with illegal value arrays. @ Previously seg faulted or added wrong value (Stig Venaas)
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* Added ldap_start_tls() functionStig Venaas2001-10-092-2/+35
| | | | | @- Added ldap_start_tls() function (Stig Venaas, patch by kuenne@rentec.com)
* 2nd phase in back-substitution those macro'sJeroen van Wolffelaar2001-09-251-1/+1
| | | | | I've got pretty much everything now...
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-58/+58
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* Not using _free_ldap_result destructor for le_result_entry, leads toStig Venaas2001-09-191-1/+1
| | | | | crashes due to freeing same memory several times in some cases
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* WhitespaceZeev Suraski2001-08-111-20/+20
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-2/+4
| | | | | - whitespace fixes
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-3/+2
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-282-21/+2
|
* Fixed memory leaks in ldap_get_entries() and ldap_get_dn() when usingStig Venaas2001-07-151-0/+4
| | | | | | | RFC1823 API # These leaks have always been there, will fix in PHP3 @- Fixed various memory leaks in the LDAP extension (Stig Venaas)
* Fixed memory leak in ldap_first_attribute(), ldap_next_attribute(),Stig Venaas2001-06-231-4/+11
| | | | | | ldap_get_attributes(), ldap_get_dn() and ldap_dn2ufn() when using post RFC 1823 API. Still more leaks to fix.
* Fixed memory leak in ldap_get_entries() when using post RFC 1823 API.Stig Venaas2001-06-201-0/+10
| | | | | Similar problems for other functions will be fixed
* Added myself to the creditsStig Venaas2001-06-131-1/+1
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-46/+41
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* - Cleaned up some whitespace (sorry, I should have committed that beforefoobar2001-05-312-320/+177
| | | | | | any other changes) - Made use of the Zend resource macros
* ldap_result_entry needs to be initialized - testedRasmus Lerdorf2001-05-301-0/+1
| | | | | Should probably MFH this once someone else tests.
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|