summaryrefslogtreecommitdiff
path: root/ext/ldap/ldap.c
Commit message (Collapse)AuthorAgeFilesLines
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-2/+2
|
* Corrected prototype comments for ldap_get_option and ldap_set_optionStig Venaas2000-10-221-2/+2
|
* Made ldap_connect() accept URL in host parameter when using OpenLDAP 2.x.Stig Venaas2000-10-201-1/+15
| | | | | | @- Made ldap_connect() accept URL in host parameter when using OpenLDAP @ 2.x. To use SSL, use ldaps://host/ as URL. (Stig Venaas)
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-4/+6
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* Added destruction of return value parameter, and using ZVAL_LONG andStig Venaas2000-10-181-6/+4
| | | | | ZVAL_STRING to set return value in ldap_get_option.
* Added ldap_get_option() and ldap_set_option() functionsStig Venaas2000-10-171-0/+160
| | | | | @- Added ldap_get_option() and ldap_set_option() functions (Stig Venaas)
* Removed some redundant convert_to_*_ex() calls. Edited some whitespace.Stig Venaas2000-10-171-19/+15
|
* removed some NSLDAP #if's giving more detailed error reportingStig Venaas2000-08-311-6/+0
|
* Makes it work with OpenLDAP 2.0 and reduces number of ifdefsStig Venaas2000-08-261-43/+25
|
* Added Oracle LDAP SDK SSL supportStig Venaas2000-08-201-0/+47
|
* fixed for openldap 2.0beta.Rui Hirokawa2000-08-071-1/+19
|
* - This should fix bug #5964foobar2000-08-041-5/+11
| | | | | | # Could someone please check this out..it works as intented for me at least. # But I don't have any Windoze machines available to test this there.
* - Added two new functions: ldap_t61_to_8859() and ldap_8859_to_t61().foobar2000-08-021-0/+59
| | | | | | These functions are available only when using openldap which is compiled with STR_TRANSLATION and LDAP_CHARSET_8859 defined in ldap_cdefs.h (Jani)
* Fixes bug which caused crash, if result_entry wasn't valid.foobar2000-07-281-4/+5
|
* # Oops..where did those creep in? =(foobar2000-07-281-1/+1
|
* @- Made ldap_add(), ldap_modify(), ldap_mod_add(), ldap_mod_replace()foobar2000-07-281-23/+28
| | | | | | | @ binary-safe. Original patch: Terrence Miao <terrence_miao@email.com> (Jani) #Thanks go to Terrence for making a patch correcting this bug in php3.0.12... #A patch, which somehow wasn't included at all in it?-) I wonder why..?
* @- Fixed bug in ldap_get_values_len() which makes it NULL-safe. (Jani)foobar2000-07-281-5/+6
| | | | | | @ Bug-report and fix submitted by Michel Alexeline <alexel@dr15.cnrs.fr> # Plus I added missing ldap_value_free_len().
* Proto fixed.Egon Schmid2000-07-261-1/+1
|
* @- Added new function: ldap_compare(). (Jani)foobar2000-07-261-0/+45
| | | | | # Documentation is coming right after this.
* @- Fixed a bug in ldap_get_entries() and ldap_get_attributes. (Jani)foobar2000-07-251-32/+15
| | | | | Fixes bugs #5433 and #5603.
* It's better not touch those ldap->ld_* when they aren't given as parameters.foobar2000-07-231-16/+32
| | | | | | (Now using -1 the parameters not wanted can be omitted) # Plus some source-polishing.
* Forgot those constants.foobar2000-07-221-0/+6
|
* @- Added four additional arguments: attrsonly, sizelimit, timelimit, deref whichfoobar2000-07-211-47/+69
| | | | | | | | | | @ were missing in ldap_search(), ldap_list() and ldap_read() functions (Jani) @- Fixed a bug in ldap_search/list/read() which prevented returning the partial @ results when 'Sizelimit exceeded' error occurred. (Jani Taskinen) # And nuked some compile time warnings. Took a while to get this commit message # written..I hope I got it right. =)
* @- Fixed a possible crash in the LDAP modify code. (Eric Kilfoil)Thies C. Arntzen2000-06-271-1/+1
|
* More protos.Egon Schmid2000-06-181-1/+1
|
* Also need to 0-terminate when adding/modifying an array of values.Stig Venaas2000-06-131-0/+1
|
* Think have to 0-terminate mod_values strings, got trailing garbage,Stig Venaas2000-06-131-0/+1
| | | | | this fixes bug #5001 I think.
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-22/+22
|
* compile fix regarding bug report #4780Hartmut Holzgraefe2000-06-051-1/+1
|
* @ Fix a couple of warnings in the gd and ldap modulesRasmus Lerdorf2000-05-241-2/+2
| | | | | num_links is a long there
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* #if COMPILE_DLSascha Schumann2000-05-021-1/+1
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* Kill warningZeev Suraski2000-04-191-2/+3
|
* @-Added ldap_get_values_len function from PHP3 to PHP4. (Sterling)Sterling Hughes2000-04-071-0/+53
|
* phpinfo() pretyingColin Viebrock2000-04-061-20/+29
| | | | | That should be everything.
* More phpinfo() prettying.Colin Viebrock2000-04-061-2/+2
| | | | | | | Can someone check my code for the interbase support, and I need someone else to decode the LDAP stuff ... it's beyond me.
* @- Added ldap_errno, ldap_err2str and ldap_error from PHP3 to PHP4. (Sterling)Sterling Hughes2000-04-061-0/+76
|
* - Fix build bugAndi Gutmans2000-04-031-2/+6
|
* @- Made the IMAP and LDAP modules compilable under Windows and thread-safe ↵Zeev Suraski2000-04-011-162/+54
| | | | (Zeev)
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* - Convert 'PHP3' to 'PHP'Zeev Suraski2000-02-261-8/+8
| | | | | - Avoid declaring crypt() related salt types twice
* More protos.Egon Schmid2000-02-231-1/+1
|
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* - PHP_WIN32Andi Gutmans2000-02-161-1/+1
|
* Cleanup patchesZeev Suraski2000-02-051-29/+29
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-22/+22
|
* More php3_ cleanupZeev Suraski1999-12-181-26/+26
|