summaryrefslogtreecommitdiff
path: root/ext/ldap/ldap.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-09-281-2/+21
|\ | | | | | | | | * PHP-5.5: Set an LDAP error code when failing ldap_bind due to null bytes
| * Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-09-281-2/+21
| |\ | | | | | | | | | | | | * PHP-5.4: Set an LDAP error code when failing ldap_bind due to null bytes
| | * Set an LDAP error code when failing ldap_bind due to null bytesMatthew Daley2014-09-281-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | Some applications check a LDAP link's error code after seeing ldap_bind fail due to a null byte bind attempt and hence incorrectly receive the last set error code. Fix by setting an LDAP error code before returning in this case.
| | * Fix null byte in LDAP bindingsStanislav Malyshev2014-04-141-0/+10
| | |
| * | Fix null byte in LDAP bindingsStanislav Malyshev2014-04-141-0/+10
| | |
* | | Fix null byte in LDAP bindingsStanislav Malyshev2014-04-141-0/+10
| | |
* | | Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-01-251-0/+365
|\ \ \ | |/ / | | | | | | | | | * PHP-5.5: Implement ldap_modify_batch.
| * | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-01-251-0/+365
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | * PHP-5.4: Implement ldap_modify_batch. Conflicts: ext/ldap/ldap.c
| | * Implement ldap_modify_batch.Ondřej Hošek2014-01-221-0/+365
| | |
| | * Bump yearXinchen Hui2014-01-031-1/+1
| | |
| * | Bump yearXinchen Hui2014-01-031-1/+1
| | |
* | | Bump yearXinchen Hui2014-01-031-1/+1
| | |
* | | fix compiler warnings and type usageMichael Wallner2013-10-181-14/+16
| | |
* | | Merge branch 'ldap_escape-dev' of https://github.com/DaveRandom/php-srcMichael Wallner2013-10-181-0/+89
|\ \ \ | |/ / |/| | | | | | | | * 'ldap_escape-dev' of https://github.com/DaveRandom/php-src: Add ldap_escape()
| * | Add ldap_escape()Chris Wright2013-09-181-0/+89
| | |
| * | Happy New YearXinchen Hui2013-01-011-1/+1
| | |
| * | - Year++Felipe Pena2012-01-011-1/+1
| | |
| * | fix params parsingStanislav Malyshev2011-08-011-1/+1
| | |
| * | - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
| | |
| * | Fix prototypes for ldap_control_paged_result and fix function name in testsScott MacVicar2011-07-141-3/+2
| | |
| * | Tidy up ldap paging code and rename the API as discussed in #42060Scott MacVicar2011-05-191-21/+22
| | |
* | | Allow the ldap extension to be compiled with Oracle's LDAPChristopher Jones2013-10-041-20/+20
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementation, if desired. Note the implementations differ so you will see different ldap behavior. The patch allows configuration similar to: --with-ldap=$HOME/instantclient --with-oci8=instantclient,$HOME/instantclient The patch doesn't support configuration similar to: --with-ldap --with-oci8=instantclient,$HOME/instantclient since this would try and mix the default LDAP and Oracle LDAP implementations. This patch closes out bug #61450 and the associated github PR. Regardless of this patch, my recommended way to install both OCI8 and ldap extensions is to statically configure PHP with ldap, and then add OCI8 as a shared extension from PECL.
* | fix memleak on resetting rebind_procMichael Wallner2013-09-301-0/+1
| |
* | Happy New YearXinchen Hui2013-01-011-1/+1
| |
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | fix params parsingStanislav Malyshev2011-08-011-1/+1
| |
* | - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
| |
* | Fix prototypes for ldap_control_paged_result and fix function name in testsScott MacVicar2011-07-141-3/+2
| |
* | Tidy up ldap paging code and rename the API as discussed in #42060Scott MacVicar2011-05-191-21/+22
|/
* - Year++Felipe Pena2011-01-011-1/+1
|
* - Fixed wrong typeFelipe Pena2010-09-081-4/+4
|
* - #42060, add paged results supportPierre Joye2010-06-151-0/+206
|
* - #43233, sasl support for ldap on windowsPierre Joye2010-05-171-0/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Fixed bug #50540 (Crash within ldap_first_reference function)Sriram Natarajan2009-12-211-0/+2
|
* - Fixed bug #50185 (ldap_get_entries() return false instead of an empty ↵Jani Taskinen2009-11-181-6/+6
| | | | | | | array when there is no error). # This is also revert of bad patch to bug #48469 and fixes it properly.
* Fixed bug #50212 (crash by ldap_get_option() with LDAP_OPT_NETWORK_TIMEOUT).Ilia Alshanetsky2009-11-181-2/+5
|
* Bug #49391 ldap.c utilizing deprecated ldap_modify_sIlia Alshanetsky2009-08-301-1/+1
|
* NULL the value after freeIlia Alshanetsky2009-08-181-0/+1
|
* - Improved param. parsing for ldap_read(), ldap_search() and ldap_list()Felipe Pena2009-08-151-68/+39
|
* MFH: Fixed bug #48696 (ldap_read() segfaults with invalid parameters) (Felipe)Johannes Schlüter2009-06-251-3/+5
|
* MFH: Fixing #48441 (ldap_search() with sizelimit/timelimit/deref options ↵Patrick Allaert2009-06-151-3/+14
| | | | makes those options persistent)
* MFH: Refactoring that will help fixing #48441Patrick Allaert2009-06-151-66/+56
|
* MFH: Removed creditPatrick Allaert2009-06-071-1/+0
|
* MFH: Fixed bug #48469 (ldap_get_entries() memory leaks on empty search results)Patrick Allaert2009-06-071-3/+4
|
* MFH: adjust reflection infoHannes Magnusson2009-04-211-0/+5
|
* Adjusted prototypeIlia Alshanetsky2009-04-211-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug#46847 (phpinfo() is missing some settings.)Hannes Magnusson2008-12-121-0/+1
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-38/+0
|