openldap/servers/slapd/back-perl
Jan Synacek fb1bf1caa8 More for ITS#8105
Fix multiple argument handling. For example:

perlModuleConfig homedir /home/jsynacek

should be converted to

olcPerlModuleConfig: homedir /home/jsynacek

and not to

olcPerlModuleConfig: homedir
olcPerlModuleConfig: /home/jsynacek
2015-04-27 11:19:20 +01:00
..
add.c Happy New Year 2015-02-11 15:36:57 -06:00
asperl_undefs.h Happy New Year 2015-02-11 15:36:57 -06:00
bind.c Happy New Year 2015-02-11 15:36:57 -06:00
close.c Happy New Year 2015-02-11 15:36:57 -06:00
compare.c Happy New Year 2015-02-11 15:36:57 -06:00
config.c More for ITS#8105 2015-04-27 11:19:20 +01:00
delete.c Happy New Year 2015-02-11 15:36:57 -06:00
init.c Happy New Year 2015-02-11 15:36:57 -06:00
Makefile.in Happy New Year 2015-02-11 15:36:57 -06:00
modify.c Happy New Year 2015-02-11 15:36:57 -06:00
modrdn.c Happy New Year 2015-02-11 15:36:57 -06:00
perl_back.h Happy New Year 2015-02-11 15:36:57 -06:00
proto-perl.h Happy New Year 2015-02-11 15:36:57 -06:00
README
SampleLDAP.pm Happy New Year 2015-02-11 15:36:57 -06:00
search.c Happy New Year 2015-02-11 15:36:57 -06:00

Differences from 2.0 Perl API:

- Perl 5.6 is supported

- backend methods return actual LDAP result codes, not
  true/false; this gives the Perl module finer control
  of the error returned to the client

- a filterSearchResults configuration file directive was
  added to tell the backend glue that the results returned
  from the Perl module are candidates only

- the "init" method is called after the backend has been
  initialized - this lets you do some initialization after
  *all* configuration file directives have been read

- the interface for the search method is improved to
  pass the scope, deferencing policy, size limit, etc.
  See SampleLDAP.pm for details.

These changes were sponsored by myinternet Limited.

Luke Howard <lukeh@padl.com>