Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Disable building of static libraries | Martin Nagy | 2009-04-28 | 1 | -0/+3 | |
| | ||||||
* | .gitignore: Add autoconf generated files | Martin Nagy | 2009-04-28 | 1 | -1/+15 | |
| | ||||||
* | Rename the project to bind-dyndb-ldap. | Martin Nagy | 2009-04-28 | 2 | -5/+5 | |
| | | | | Also, rename libdnsldap.so to ldap.so. | |||||
* | Install plugin into $libdir/bind subdirectory and omit SOname version number. | Adam Tkac | 2009-04-27 | 1 | -5/+3 | |
| | ||||||
* | Logging cleanup. | Martin Nagy | 2009-04-27 | 2 | -6/+2 | |
| | ||||||
* | Add reconnection logic. | Martin Nagy | 2009-04-27 | 1 | -54/+142 | |
| | ||||||
* | Make ldap_rdata_to_char_array() static. | Martin Nagy | 2009-04-24 | 2 | -3/+3 | |
| | ||||||
* | Add update ACL capabilities. | Martin Nagy | 2009-04-24 | 4 | -28/+505 | |
| | ||||||
* | Fix a nasty va_list bug. | Martin Nagy | 2009-04-24 | 1 | -2/+7 | |
| | | | | | We were using the same va_list twice, which caused a nasty segfault inside the C library. | |||||
* | Fix rdata parsing. | Martin Nagy | 2009-04-23 | 5 | -15/+19 | |
| | ||||||
* | Don't cache empty records for now. | Martin Nagy | 2009-04-23 | 1 | -1/+2 | |
| | ||||||
* | Change the setting name 'host' to 'uri'. | Martin Nagy | 2009-04-23 | 1 | -8/+8 | |
| | ||||||
* | Disable SASL for now, it doesn't work properly. | Martin Nagy | 2009-04-23 | 1 | -0/+7 | |
| | ||||||
* | Remove unneeded log functions. | Martin Nagy | 2009-04-23 | 2 | -24/+9 | |
| | ||||||
* | Forgotten NULL check. | Martin Nagy | 2009-04-22 | 1 | -1/+4 | |
| | | | | | | Only unregister the implementation if it was registered by us. This prevents errors if we are using the same DB implementation multiple times. | |||||
* | Add my email address for bug reports. | Martin Nagy | 2009-04-21 | 1 | -1/+1 | |
| | ||||||
* | Add COPYING file. | Martin Nagy | 2009-04-21 | 1 | -0/+339 | |
| | ||||||
* | Use dns_dyndb_arguments_t to get pointers. | Martin Nagy | 2009-04-21 | 1 | -3/+9 | |
| | ||||||
* | Use -version-number instead of -version-info as libtool parameter. | Adam Tkac | 2009-03-30 | 1 | -1/+1 | |
| | ||||||
* | Some backward compatibility #ifdefs. | Martin Nagy | 2009-03-30 | 1 | -3/+35 | |
| | ||||||
* | Add configure.ac and Makefile.am. | Adam Tkac | 2009-03-30 | 3 | -0/+58 | |
| | ||||||
* | Prepare the tree for conversion to autoconf. | Martin Nagy | 2009-03-30 | 21 | -20/+0 | |
| | | | | All source files are now moved to src/ and the old Makefile is removed. | |||||
* | Some speed optimizations for the string library. | Martin Nagy | 2009-03-29 | 1 | -7/+12 | |
| | | | | Get rid of strncpy() and use memcpy() which is faster instead. | |||||
* | Add a convenience macro for isc_mem_allocate(). | Martin Nagy | 2009-03-25 | 2 | -11/+11 | |
| | ||||||
* | Refactoring related to isc_buffer_t. | Martin Nagy | 2009-03-25 | 5 | -53/+78 | |
| | ||||||
* | Fix problems with dnsname_to_dn() (rewrite). | Martin Nagy | 2009-03-25 | 6 | -59/+172 | |
| | ||||||
* | Restructure ldapdb_create(). | Martin Nagy | 2009-03-24 | 1 | -32/+28 | |
| | ||||||
* | Free the LDAP cache if something goes wrong. | Martin Nagy | 2009-03-24 | 1 | -0/+2 | |
| | ||||||
* | Use util.h macros in ldap_driver.c. | Martin Nagy | 2009-03-24 | 1 | -41/+16 | |
| | ||||||
* | Better conversion of DN to dnsname. | Martin Nagy | 2009-03-23 | 3 | -45/+43 | |
| | | | | | We now don't need the root DN in order to make the conversion. Instead, we only look for RDNs with objectClass "idnsName". | |||||
* | Add locking capabilities into the caching code. | Martin Nagy | 2009-03-20 | 1 | -9/+45 | |
| | ||||||
* | Discard entries from cache after updating in LDAP. | Martin Nagy | 2009-03-16 | 2 | -2/+2 | |
| | ||||||
* | Remove testing write/remove ldap functions. | Adam Tkac | 2009-03-16 | 1 | -91/+3 | |
| | ||||||
* | Implement subtractrdataset function. | Adam Tkac | 2009-03-16 | 1 | -21/+85 | |
| | ||||||
* | Implement addrdataset function. | Adam Tkac | 2009-03-16 | 1 | -7/+219 | |
| | ||||||
* | Fix memory leak. | Adam Tkac | 2009-03-16 | 1 | -0/+1 | |
| | ||||||
* | Some cosmetic changes in ldap_helper.c | Martin Nagy | 2009-03-16 | 1 | -11/+6 | |
| | ||||||
* | Use isc_mem_allocate when we call isc_mem_free. | Adam Tkac | 2009-03-16 | 1 | -3/+16 | |
| | ||||||
* | Modify functions - rdatalist is always exactly one item (not list). | Adam Tkac | 2009-03-16 | 1 | -60/+40 | |
| | ||||||
* | Add write-back support. | Martin Nagy | 2009-03-16 | 5 | -5/+281 | |
| | ||||||
* | Add rdatatype_to_ldap_record() function. | Martin Nagy | 2009-03-16 | 2 | -4/+29 | |
| | | | | This function will convert dns_rdatatype_t into LDAP attribute name. | |||||
* | Add support for SASL and simple authentication. | Martin Nagy | 2009-03-16 | 2 | -30/+163 | |
| | ||||||
* | Add functions str_toupper() and str_casecmp_char() | Martin Nagy | 2009-03-16 | 2 | -1/+29 | |
| | ||||||
* | Correctly accept an empty argument. | Martin Nagy | 2009-03-16 | 1 | -15/+13 | |
| | | | | Also some small changes around settings. | |||||
* | Apply defaults correctly. | Martin Nagy | 2009-03-16 | 1 | -6/+5 | |
| | ||||||
* | Add discard_from_cache(). | Martin Nagy | 2009-03-16 | 2 | -0/+25 | |
| | | | | | This function will delete a named entry from cache, if it exists and if caching is turned on. | |||||
* | Add expiration option 'cache_ttl'. | Martin Nagy | 2009-03-16 | 1 | -38/+42 | |
| | | | | Defaults to 120 seconds. | |||||
* | Integrate the caching support. | Martin Nagy | 2009-03-14 | 4 | -15/+37 | |
| | ||||||
* | Add basic caching support. | Martin Nagy | 2009-03-14 | 3 | -2/+244 | |
| | ||||||
* | Add ldap_rdatalist_copy(). | Martin Nagy | 2009-03-14 | 2 | -0/+34 | |
| |