├── .clang-format ├── ANNOUNCEMENT.OpenLDAP ├── AUTHORS ├── CHANGES.OpenLDAP ├── CONTRIBUTING ├── CONTRIBUTING.md ├── COPYING ├── COPYRIGHT ├── ChangeLog ├── LICENSE ├── Makefile.am ├── NEWS ├── NEWS.md ├── README ├── README.OpenLDAP ├── README.md ├── TODO.OpenLDAP ├── TODO.md ├── bootstrap.sh ├── clients ├── Makefile.am └── tools │ ├── Makefile.am │ ├── common.c │ ├── common.h │ ├── ldapcompare.c │ ├── ldapdelete.c │ ├── ldapexop.c │ ├── ldapmodify.c │ ├── ldapmodrdn.c │ ├── ldappasswd.c │ ├── ldapsearch.c │ ├── ldapurl.c │ ├── ldapvc.c │ └── ldapwhoami.c ├── configure.ac ├── contrib ├── ConfigOIDs ├── Makefile.am ├── README ├── docker │ ├── Dockerfile │ ├── README.md │ ├── entrypoint.sh │ └── slapd.sample.conf ├── packaging │ └── CentOS │ │ └── 7 │ │ ├── DB_CONFIG.example │ │ ├── README.md │ │ ├── ldap.conf │ │ ├── libexec-check-config.sh │ │ ├── libexec-functions │ │ ├── libexec-upgrade-db.sh │ │ ├── reopenldap.spec │ │ ├── slapd.ldif │ │ ├── slapd.service │ │ ├── slapd.sysconfig │ │ └── slapd.tmpfiles ├── slapd-modules │ ├── Makefile.am │ ├── README │ ├── acl │ │ ├── README.gssacl │ │ ├── README.posixgroup │ │ ├── gssacl.c │ │ └── posixgroup.c │ ├── addpartial │ │ ├── README │ │ └── addpartial-overlay.c │ ├── adremap │ │ ├── adremap.c │ │ └── slapo-adremap.soelim │ ├── allop │ │ ├── README │ │ ├── allop.c │ │ └── slapo-allop.soelim │ ├── allowed │ │ ├── README │ │ └── allowed.c │ ├── authzid │ │ └── authzid.c │ ├── autogroup │ │ ├── README │ │ ├── autogroup.c │ │ └── slapo-autogroup.soelim │ ├── check_password │ │ ├── README │ │ ├── check_password.c │ │ └── check_password.conf │ ├── cloak │ │ ├── cloak.c │ │ └── slapo-cloak.soelim │ ├── comp_match │ │ ├── README │ │ ├── asn.h │ │ ├── asn_to_syn_mr.c │ │ ├── authorityKeyIdentifier.asn │ │ ├── authorityKeyIdentifier.c │ │ ├── authorityKeyIdentifier.h │ │ ├── certificate.asn1 │ │ ├── certificate.c │ │ ├── certificate.h │ │ ├── componentlib.c │ │ ├── componentlib.h │ │ ├── crl.c │ │ ├── crl.h │ │ └── init.c │ ├── denyop │ │ └── denyop.c │ ├── dsaschema │ │ ├── README │ │ └── dsaschema.c │ ├── dupent │ │ └── dupent.c │ ├── kinit │ │ ├── README │ │ └── kinit.c │ ├── lastbind │ │ ├── lastbind.c │ │ └── slapo-lastbind.soelim │ ├── lastmod │ │ ├── lastmod.c │ │ └── slapo-lastmod.soelim │ ├── man.footer │ ├── man.subdir-footer │ ├── mobiuniquemember │ │ └── mobiuniquemember.c │ ├── mr_passthru │ │ ├── README.md │ │ └── mr_passthru.c │ ├── noopsrch │ │ └── noopsrch.c │ ├── nops │ │ ├── nops.c │ │ └── slapo-nops.soelim │ ├── nssov │ │ ├── README │ │ ├── alias.c │ │ ├── ether.c │ │ ├── group.c │ │ ├── host.c │ │ ├── ldapns.schema │ │ ├── netgroup.c │ │ ├── network.c │ │ ├── nss-pam-ldapd │ │ │ ├── README │ │ │ ├── attrs.h │ │ │ ├── nslcd-prot.h │ │ │ ├── nslcd.h │ │ │ ├── tio.c │ │ │ └── tio.h │ │ ├── nssov.c │ │ ├── nssov.h │ │ ├── pam.c │ │ ├── passwd.c │ │ ├── protocol.c │ │ ├── rpc.c │ │ ├── service.c │ │ ├── shadow.c │ │ └── slapo-nssov.soelim │ ├── passwd │ │ ├── README │ │ ├── apr1-atol.pl │ │ ├── apr1-ltoa.pl │ │ ├── apr1.c │ │ ├── argon2 │ │ │ ├── README.md │ │ │ └── pw-argon2.c │ │ ├── bcrypt │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── bcrypt.c │ │ │ ├── crypt_blowfish.c │ │ │ └── crypt_blowfish.h │ │ ├── kerberos.c │ │ ├── netscape.c │ │ ├── pbkdf2 │ │ │ ├── README │ │ │ ├── pw-pbkdf2.c │ │ │ └── slapo-pw-pbkdf2.soelim │ │ ├── radius.c │ │ ├── sha2 │ │ │ ├── README │ │ │ ├── sha2.c │ │ │ ├── sha2.h │ │ │ ├── slapd-sha2.c │ │ │ └── slapo-pw-sha2.soelim │ │ ├── slapo-pw-radius.soelim │ │ └── totp │ │ │ ├── README │ │ │ ├── slapd-totp.c │ │ │ └── slapo-totp.soelim │ ├── proxyOld │ │ ├── README │ │ └── proxyOld.c │ ├── samba4 │ │ ├── README │ │ ├── pguid.c │ │ ├── rdnval.c │ │ └── vernum.c │ ├── smbk5pwd │ │ ├── README │ │ ├── slapo-smbk5pwd.soelim │ │ └── smbk5pwd.c │ ├── trace │ │ └── trace.c │ ├── usn │ │ ├── README │ │ └── usn.c │ └── vc │ │ └── vc.c ├── slapd-tools │ ├── Makefile.am │ ├── README │ ├── statslog │ └── wrap_slap_ops └── slapi-plugins │ ├── Makefile.am │ └── addrdnvalues │ ├── README │ └── addrdnvalues.c ├── doc ├── devel │ ├── OIDs │ ├── README │ ├── args │ ├── template.c │ ├── todo │ ├── toolargs │ └── utfconv.txt └── man │ ├── Makefile.am │ ├── en │ ├── Makefile.am │ ├── Project │ ├── man1 │ │ ├── ldapcompare.soelim │ │ ├── ldapdelete.soelim │ │ ├── ldapexop.soelim │ │ ├── ldapmodify.1.links │ │ ├── ldapmodify.soelim │ │ ├── ldapmodrdn.soelim │ │ ├── ldappasswd.soelim │ │ ├── ldapsearch.soelim │ │ ├── ldapurl.soelim │ │ └── ldapwhoami.soelim │ ├── man3 │ │ ├── lber-decode.3.links │ │ ├── lber-decode.soelim │ │ ├── lber-encode.3.links │ │ ├── lber-encode.soelim │ │ ├── lber-memory.soelim │ │ ├── lber-sockbuf.soelim │ │ ├── lber-types.3.links │ │ ├── lber-types.soelim │ │ ├── ldap.soelim │ │ ├── ldap_abandon.3.links │ │ ├── ldap_abandon.soelim │ │ ├── ldap_add.3.links │ │ ├── ldap_add.soelim │ │ ├── ldap_bind.3.links │ │ ├── ldap_bind.soelim │ │ ├── ldap_compare.3.links │ │ ├── ldap_compare.soelim │ │ ├── ldap_controls.3.links │ │ ├── ldap_controls.soelim │ │ ├── ldap_delete.3.links │ │ ├── ldap_delete.soelim │ │ ├── ldap_dup.3.links │ │ ├── ldap_dup.soelim │ │ ├── ldap_error.3.links │ │ ├── ldap_error.soelim │ │ ├── ldap_extended_operation.3.links │ │ ├── ldap_extended_operation.soelim │ │ ├── ldap_first_attribute.3.links │ │ ├── ldap_first_attribute.soelim │ │ ├── ldap_first_entry.3.links │ │ ├── ldap_first_entry.soelim │ │ ├── ldap_first_message.3.links │ │ ├── ldap_first_message.soelim │ │ ├── ldap_first_reference.3.links │ │ ├── ldap_first_reference.soelim │ │ ├── ldap_get_dn.3.links │ │ ├── ldap_get_dn.soelim │ │ ├── ldap_get_option.3.links │ │ ├── ldap_get_option.soelim │ │ ├── ldap_get_values.3.links │ │ ├── ldap_get_values.soelim │ │ ├── ldap_memory.3.links │ │ ├── ldap_memory.soelim │ │ ├── ldap_modify.3.links │ │ ├── ldap_modify.soelim │ │ ├── ldap_modrdn.3.links │ │ ├── ldap_modrdn.soelim │ │ ├── ldap_open.3.links │ │ ├── ldap_open.soelim │ │ ├── ldap_parse_reference.soelim │ │ ├── ldap_parse_result.3.links │ │ ├── ldap_parse_result.soelim │ │ ├── ldap_parse_sort_control.soelim │ │ ├── ldap_parse_vlv_control.soelim │ │ ├── ldap_rename.3.links │ │ ├── ldap_rename.soelim │ │ ├── ldap_result.3.links │ │ ├── ldap_result.soelim │ │ ├── ldap_schema.3.links │ │ ├── ldap_schema.soelim │ │ ├── ldap_search.3.links │ │ ├── ldap_search.soelim │ │ ├── ldap_sort.3.links │ │ ├── ldap_sort.soelim │ │ ├── ldap_sync.soelim │ │ ├── ldap_tls.3.links │ │ ├── ldap_tls.soelim │ │ ├── ldap_url.3.links │ │ └── ldap_url.soelim │ ├── man5 │ │ ├── ldap.conf.soelim │ │ ├── ldif.soelim │ │ ├── slapd-asyncmeta.soelim │ │ ├── slapd-bdb.5.links │ │ ├── slapd-bdb.soelim │ │ ├── slapd-config.soelim │ │ ├── slapd-dnssrv.soelim │ │ ├── slapd-ldap.soelim │ │ ├── slapd-ldif.soelim │ │ ├── slapd-mdb.soelim │ │ ├── slapd-meta.soelim │ │ ├── slapd-monitor.soelim │ │ ├── slapd-ndb.soelim │ │ ├── slapd-null.soelim │ │ ├── slapd-passwd.soelim │ │ ├── slapd-perl.soelim │ │ ├── slapd-relay.soelim │ │ ├── slapd-shell.soelim │ │ ├── slapd-sock.5.links │ │ ├── slapd-sock.soelim │ │ ├── slapd-sql.soelim │ │ ├── slapd-wt.soelim │ │ ├── slapd.access.soelim │ │ ├── slapd.backends.soelim │ │ ├── slapd.conf.soelim │ │ ├── slapd.overlays.soelim │ │ ├── slapd.plugin.soelim │ │ ├── slapo-accesslog.soelim │ │ ├── slapo-auditlog.soelim │ │ ├── slapo-autoca.soelim │ │ ├── slapo-chain.soelim │ │ ├── slapo-collect.soelim │ │ ├── slapo-constraint.soelim │ │ ├── slapo-dds.soelim │ │ ├── slapo-dyngroup.soelim │ │ ├── slapo-dynlist.soelim │ │ ├── slapo-memberof.soelim │ │ ├── slapo-pbind.soelim │ │ ├── slapo-pcache.soelim │ │ ├── slapo-ppolicy.soelim │ │ ├── slapo-refint.soelim │ │ ├── slapo-retcode.soelim │ │ ├── slapo-rwm.soelim │ │ ├── slapo-sssvlv.soelim │ │ ├── slapo-syncprov.soelim │ │ ├── slapo-translucent.soelim │ │ ├── slapo-unique.soelim │ │ └── slapo-valsort.soelim │ └── man8 │ │ ├── slapacl.soelim │ │ ├── slapadd.soelim │ │ ├── slapauth.soelim │ │ ├── slapcat.soelim │ │ ├── slapd.soelim │ │ ├── slapdn.soelim │ │ ├── slapindex.soelim │ │ ├── slapmodify.soelim │ │ ├── slappasswd.soelim │ │ ├── slapschema.soelim │ │ └── slaptest.soelim │ └── ru │ ├── Makefile.am │ ├── Project │ ├── man1 │ ├── ldapcompare.soelim │ ├── ldapdelete.soelim │ ├── ldapexop.soelim │ ├── ldapmodify.1.links │ ├── ldapmodify.soelim │ ├── ldapmodrdn.soelim │ ├── ldappasswd.soelim │ ├── ldapsearch.soelim │ ├── ldapurl.soelim │ └── ldapwhoami.soelim │ ├── man5 │ ├── ldap.conf.soelim │ ├── ldif.soelim │ ├── slapd-bdb.5.links │ ├── slapd-bdb.soelim │ ├── slapd-config.soelim │ ├── slapd-dnssrv.soelim │ ├── slapd-ldap.soelim │ ├── slapd-ldbm.soelim │ ├── slapd-ldif.soelim │ ├── slapd-mdb.soelim │ ├── slapd-meta.soelim │ ├── slapd-monitor.soelim │ ├── slapd-ndb.soelim │ ├── slapd-null.soelim │ ├── slapd-passwd.soelim │ ├── slapd-perl.soelim │ ├── slapd-relay.soelim │ ├── slapd-shell.soelim │ ├── slapd-sock.5.links │ ├── slapd-sock.soelim │ ├── slapd-sql.soelim │ ├── slapd.access.soelim │ ├── slapd.backends.soelim │ ├── slapd.conf.soelim │ ├── slapd.overlays.soelim │ ├── slapd.plugin.soelim │ ├── slapo-accesslog.soelim │ ├── slapo-auditlog.soelim │ ├── slapo-chain.soelim │ ├── slapo-collect.soelim │ ├── slapo-constraint.soelim │ ├── slapo-dds.soelim │ ├── slapo-dyngroup.soelim │ ├── slapo-dynlist.soelim │ ├── slapo-memberof.soelim │ ├── slapo-pbind.soelim │ ├── slapo-pcache.soelim │ ├── slapo-ppolicy.soelim │ ├── slapo-refint.soelim │ ├── slapo-retcode.soelim │ ├── slapo-rwm.soelim │ ├── slapo-sssvlv.soelim │ ├── slapo-syncprov.soelim │ ├── slapo-translucent.soelim │ ├── slapo-unique.soelim │ └── slapo-valsort.soelim │ └── man8 │ ├── slapacl.soelim │ ├── slapadd.soelim │ ├── slapauth.soelim │ ├── slapcat.soelim │ ├── slapd.soelim │ ├── slapdn.soelim │ ├── slapindex.soelim │ ├── slappasswd.soelim │ ├── slapschema.soelim │ └── slaptest.soelim ├── include ├── Makefile.am ├── ac │ ├── alloca.h │ ├── bytes.h │ ├── crypt.h │ ├── ctype.h │ ├── dirent.h │ ├── errno.h │ ├── fdset.h │ ├── localize.h │ ├── param.h │ ├── regex.h │ ├── setproctitle.h │ ├── signal.h │ ├── socket.h │ ├── stdarg.h │ ├── stdlib.h │ ├── string.h │ ├── sysexits.h │ ├── syslog.h │ ├── termios.h │ ├── time.h │ ├── unistd.h │ └── wait.h ├── avl.h ├── getopt-compat.h ├── lber.h ├── lber_hipagut.h ├── lber_pvt.h ├── lber_types.h.in ├── ldap.h ├── ldap_cdefs.h ├── ldap_defaults.h ├── ldap_dirs.h.in ├── ldap_features.h.in ├── ldap_int_thread.h ├── ldap_log.h ├── ldap_pvt.h ├── ldap_pvt_thread.h ├── ldap_pvt_uc.h ├── ldap_queue.h ├── ldap_rq.h ├── ldap_schema.h ├── ldap_utf8.h ├── ldif.h ├── lutil.h ├── lutil_hash.h ├── lutil_ldap.h ├── lutil_lockf.h ├── lutil_md5.h ├── lutil_meter.h ├── lutil_sha1.h ├── reldap.h ├── rewrite.h ├── slapi-plugin.h └── sysexits-compat.h ├── libraries ├── Makefile.am ├── liblunicode │ ├── CompositionExclusions.txt │ ├── MUTTUCData.txt │ ├── Makefile.am │ ├── README-ucdata.txt │ ├── README-ure.txt │ ├── README-utbm.txt │ ├── UCD-Terms │ ├── UnicodeData.txt │ ├── api.txt │ ├── bidiapi.txt │ ├── format.txt │ ├── ucdata.c │ ├── ucdata.h │ ├── ucdata.man │ ├── ucgendat.c │ ├── ucpgba.c │ ├── ucpgba.h │ ├── ucpgba.man │ ├── ucstr.c │ ├── ure.c │ ├── ure.h │ ├── urestubs.c │ ├── utbm.c │ ├── utbm.h │ └── utbmstub.c ├── liblutil │ ├── Makefile.am │ ├── avl.c │ ├── base64.c │ ├── detach.c │ ├── entropy.c │ ├── getopt.c │ ├── getpass.c │ ├── getpeereid.c │ ├── hash.c │ ├── lockf.c │ ├── md5.c │ ├── meter.c │ ├── passfile.c │ ├── passwd.c │ ├── sasl.c │ ├── setproctitle.c │ ├── sha1.c │ ├── signal.c │ ├── sockpair.c │ ├── tavl.c │ ├── utils.c │ └── uuid.c ├── libmdbx │ ├── .clang-format-ignore │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── GNUmakefile │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── VERSION.json │ ├── cmake │ │ ├── compiler.cmake │ │ ├── profile.cmake │ │ └── utils.cmake │ ├── man1 │ │ ├── mdbx_chk.1 │ │ ├── mdbx_copy.1 │ │ ├── mdbx_drop.1 │ │ ├── mdbx_dump.1 │ │ ├── mdbx_load.1 │ │ └── mdbx_stat.1 │ ├── mdbx.c │ ├── mdbx.c++ │ ├── mdbx.h │ ├── mdbx.h++ │ ├── mdbx_chk.c │ ├── mdbx_copy.c │ ├── mdbx_drop.c │ ├── mdbx_dump.c │ ├── mdbx_load.c │ ├── mdbx_stat.c │ └── ntdll.def ├── libreldap │ ├── Makefile.am │ ├── abandon.c │ ├── add.c │ ├── addentry.c │ ├── assertion.c │ ├── bprint.c │ ├── cancel.c │ ├── charray.c │ ├── check │ │ ├── apitest.c │ │ ├── avltest.c │ │ ├── dntest.c │ │ ├── dtest.c │ │ ├── etest.c │ │ ├── ftest.c │ │ ├── idtest.c │ │ ├── ptest.c │ │ ├── tavltest.c │ │ ├── test.c │ │ └── urltest.c │ ├── compare.c │ ├── controls.c │ ├── crutch.c │ ├── cyrus.c │ ├── dds.c │ ├── debug.c │ ├── decode.c │ ├── delete.c │ ├── deprecated.c │ ├── deref.c │ ├── dnssrv.c │ ├── encode.c │ ├── error.c │ ├── extended.c │ ├── fetch.c │ ├── filter.c │ ├── free.c │ ├── getattr.c │ ├── getdn.c │ ├── getentry.c │ ├── getvalues.c │ ├── gssapi.c │ ├── hipagut.c │ ├── init.c │ ├── io.c │ ├── lbase64.c │ ├── lber-int.h │ ├── lber_options.c │ ├── ldap-int.h │ ├── ldap-tls.h │ ├── ldap.conf │ ├── ldap_options.c │ ├── ldap_sync.c │ ├── ldap_thr_debug.h │ ├── ldif.c │ ├── ldifutil.c │ ├── memory.c │ ├── messages.c │ ├── modify.c │ ├── modrdn.c │ ├── msctrl.c │ ├── ntlm.c │ ├── open.c │ ├── os-ip.c │ ├── os-local.c │ ├── pagectrl.c │ ├── passwd.c │ ├── posix.c │ ├── ppolicy.c │ ├── references.c │ ├── request.c │ ├── result.c │ ├── rq.c │ ├── sasl.c │ ├── schema.c │ ├── search.c │ ├── sockbuf.c │ ├── sort.c │ ├── sortctrl.c │ ├── stctrl.c │ ├── stdio.c │ ├── string.c │ ├── t61.c │ ├── thr_debug.c │ ├── thr_stub.c │ ├── threads.c │ ├── tls2.c │ ├── tls_g.c │ ├── tls_m.c │ ├── tls_o.c │ ├── tpool.c │ ├── turn.c │ ├── txn.c │ ├── unbind.c │ ├── url.c │ ├── utf-8-conv.c │ ├── utf-8.c │ ├── util-int.c │ ├── vc.c │ ├── vlvctrl.c │ └── whoami.c └── librewrite │ ├── Copyright │ ├── Makefile.am │ ├── config.c │ ├── context.c │ ├── info.c │ ├── ldapmap.c │ ├── map.c │ ├── params.c │ ├── parse.c │ ├── rewrite-int.h │ ├── rewrite-map.h │ ├── rewrite.c │ ├── rule.c │ ├── session.c │ ├── subst.c │ ├── var.c │ └── xmap.c ├── servers ├── Makefile.am └── slapd │ ├── Makefile.am │ ├── abandon.c │ ├── aci.c │ ├── acl.c │ ├── aclparse.c │ ├── ad.c │ ├── add.c │ ├── alock.c │ ├── alock.h │ ├── at.c │ ├── attr.c │ ├── ava.c │ ├── back-asyncmeta │ ├── Makefile.am │ ├── abandon.c │ ├── add.c │ ├── back-asyncmeta.h │ ├── bind.c │ ├── candidates.c │ ├── compare.c │ ├── config.c │ ├── conn.c │ ├── delete.c │ ├── dncache.c │ ├── init.c │ ├── map.c │ ├── message_queue.c │ ├── meta_result.c │ ├── modify.c │ ├── modrdn.c │ ├── proto-asyncmeta.h │ ├── search.c │ ├── suffixmassage.c │ └── unbind.c │ ├── back-bdb │ ├── Makefile.am │ ├── add.c │ ├── attr.c │ ├── back-bdb.h │ ├── bind.c │ ├── cache.c │ ├── compare.c │ ├── config.c │ ├── dbcache.c │ ├── delete.c │ ├── dn2entry.c │ ├── dn2id.c │ ├── error.c │ ├── extended.c │ ├── filterindex.c │ ├── id2entry.c │ ├── idl.c │ ├── idl.h │ ├── index.c │ ├── init.c │ ├── key.c │ ├── modify.c │ ├── modrdn.c │ ├── monitor.c │ ├── nextid.c │ ├── operational.c │ ├── proto-bdb.h │ ├── referral.c │ ├── search.c │ ├── tools.c │ └── trans.c │ ├── back-dnssrv │ ├── Makefile.am │ ├── bind.c │ ├── compare.c │ ├── config.c │ ├── init.c │ ├── proto-dnssrv.h │ ├── referral.c │ └── search.c │ ├── back-hdb │ └── Makefile.am │ ├── back-ldap │ ├── Makefile.am │ ├── TODO.proxy │ ├── add.c │ ├── back-ldap.h │ ├── bind.c │ ├── chain.c │ ├── compare.c │ ├── config.c │ ├── delete.c │ ├── distproc.c │ ├── extended.c │ ├── init.c │ ├── modify.c │ ├── modrdn.c │ ├── monitor.c │ ├── pbind.c │ ├── proto-ldap.h │ ├── search.c │ └── unbind.c │ ├── back-ldif │ ├── Makefile.am │ └── ldif.c │ ├── back-mdb │ ├── Makefile.am │ ├── add.c │ ├── attr.c │ ├── back-mdb.h │ ├── bind.c │ ├── compare.c │ ├── config.c │ ├── delete.c │ ├── dn2entry.c │ ├── dn2id.c │ ├── extended.c │ ├── filterindex.c │ ├── id2entry.c │ ├── idl.c │ ├── idl.h │ ├── index.c │ ├── init.c │ ├── key.c │ ├── modify.c │ ├── modrdn.c │ ├── monitor.c │ ├── nextid.c │ ├── operational.c │ ├── proto-mdb.h │ ├── search.c │ └── tools.c │ ├── back-meta │ ├── Makefile.am │ ├── add.c │ ├── back-meta.h │ ├── bind.c │ ├── candidates.c │ ├── compare.c │ ├── config.c │ ├── conn.c │ ├── delete.c │ ├── dncache.c │ ├── init.c │ ├── map.c │ ├── modify.c │ ├── modrdn.c │ ├── proto-meta.h │ ├── search.c │ ├── suffixmassage.c │ └── unbind.c │ ├── back-monitor │ ├── Makefile.am │ ├── README │ ├── back-monitor.h │ ├── backend.c │ ├── bind.c │ ├── cache.c │ ├── compare.c │ ├── conn.c │ ├── database.c │ ├── entry.c │ ├── init.c │ ├── listener.c │ ├── log.c │ ├── modify.c │ ├── operation.c │ ├── operational.c │ ├── overlay.c │ ├── proto-back-monitor.h │ ├── rww.c │ ├── search.c │ ├── sent.c │ ├── thread.c │ └── time.c │ ├── back-ndb │ ├── Makefile.am │ ├── TODO │ ├── add.cpp │ ├── attrsets.conf │ ├── back-ndb.h │ ├── bind.cpp │ ├── compare.cpp │ ├── config.cpp │ ├── delete.cpp │ ├── init.cpp │ ├── modify.cpp │ ├── modrdn.cpp │ ├── ndbio.cpp │ ├── proto-ndb.h │ ├── search.cpp │ └── tools.cpp │ ├── back-null │ ├── Makefile.am │ ├── README │ └── null.c │ ├── back-passwd │ ├── Makefile.am │ ├── back-passwd.h │ ├── config.c │ ├── init.c │ ├── proto-passwd.h │ └── search.c │ ├── back-perl │ ├── Makefile.am │ ├── README │ ├── SampleLDAP.pm │ ├── add.c │ ├── bind.c │ ├── close.c │ ├── compare.c │ ├── config.c │ ├── delete.c │ ├── init.c │ ├── modify.c │ ├── modrdn.c │ ├── perl_back.h │ ├── proto-perl.h │ └── search.c │ ├── back-relay │ ├── Makefile.am │ ├── README │ ├── back-relay.h │ ├── init.c │ ├── op.c │ └── proto-back-relay.h │ ├── back-shell │ ├── Makefile.am │ ├── add.c │ ├── bind.c │ ├── compare.c │ ├── config.c │ ├── delete.c │ ├── fork.c │ ├── init.c │ ├── modify.c │ ├── modrdn.c │ ├── proto-shell.h │ ├── result.c │ ├── search.c │ ├── searchexample.conf │ ├── searchexample.sh │ ├── shell.h │ └── unbind.c │ ├── back-sock │ ├── Makefile.am │ ├── add.c │ ├── back-sock.h │ ├── bind.c │ ├── compare.c │ ├── config.c │ ├── delete.c │ ├── extended.c │ ├── init.c │ ├── modify.c │ ├── modrdn.c │ ├── opensock.c │ ├── proto-sock.h │ ├── result.c │ ├── search.c │ ├── searchexample.conf │ ├── searchexample.pl │ └── unbind.c │ ├── back-sql │ ├── Makefile.am │ ├── add.c │ ├── api.c │ ├── back-sql.h │ ├── bind.c │ ├── compare.c │ ├── config.c │ ├── delete.c │ ├── docs │ │ ├── bugs │ │ ├── concept │ │ ├── install │ │ ├── platforms │ │ └── todo │ ├── entry-id.c │ ├── init.c │ ├── modify.c │ ├── modrdn.c │ ├── operational.c │ ├── proto-sql.h │ ├── rdbms_depend │ │ ├── README │ │ ├── ibmdb2 │ │ │ ├── backsql_create.sql │ │ │ ├── backsql_drop.sql │ │ │ ├── slapd.conf │ │ │ ├── testdb_create.sql │ │ │ ├── testdb_data.sql │ │ │ ├── testdb_drop.sql │ │ │ └── testdb_metadata.sql │ │ ├── mssql │ │ │ ├── backsql_create.sql │ │ │ ├── backsql_drop.sql │ │ │ ├── slapd.conf │ │ │ ├── testdb_create.sql │ │ │ ├── testdb_data.sql │ │ │ ├── testdb_drop.sql │ │ │ └── testdb_metadata.sql │ │ ├── mysql │ │ │ ├── backsql_create.sql │ │ │ ├── backsql_drop.sql │ │ │ ├── slapd.conf │ │ │ ├── testdb_create.sql │ │ │ ├── testdb_data.sql │ │ │ ├── testdb_drop.sql │ │ │ └── testdb_metadata.sql │ │ ├── oracle │ │ │ ├── backsql_create.sql │ │ │ ├── backsql_drop.sql │ │ │ ├── slapd.conf │ │ │ ├── testdb_create.sql │ │ │ ├── testdb_data.sql │ │ │ ├── testdb_drop.sql │ │ │ └── testdb_metadata.sql │ │ ├── pgsql │ │ │ ├── backsql_create.sql │ │ │ ├── backsql_drop.sql │ │ │ ├── slapd.conf │ │ │ ├── testdb_create.sql │ │ │ ├── testdb_data.sql │ │ │ ├── testdb_drop.sql │ │ │ └── testdb_metadata.sql │ │ └── timesten │ │ │ ├── backsql_create.sql │ │ │ ├── backsql_drop.sql │ │ │ ├── create_schema.sh │ │ │ ├── dnreverse │ │ │ ├── Makefile │ │ │ └── dnreverse.cpp │ │ │ ├── slapd.conf │ │ │ ├── testdb_create.sql │ │ │ ├── testdb_data.sql │ │ │ ├── testdb_drop.sql │ │ │ ├── testdb_metadata.sql │ │ │ ├── ttcreate_schema.sh │ │ │ ├── tttestdb_create.sql │ │ │ ├── tttestdb_data.sql │ │ │ ├── tttestdb_drop.sql │ │ │ └── tttestdb_metadata.sql │ ├── schema-map.c │ ├── search.c │ ├── sql-wrap.c │ └── util.c │ ├── back-wt │ ├── Makefile.am │ ├── add.c │ ├── attr.c │ ├── back-wt.h │ ├── bind.c │ ├── cache.c │ ├── compare.c │ ├── config.c │ ├── ctx.c │ ├── delete.c │ ├── dn2entry.c │ ├── dn2id.c │ ├── extended.c │ ├── filterindex.c │ ├── id2entry.c │ ├── idl.c │ ├── idl.h │ ├── index.c │ ├── init.c │ ├── key.c │ ├── modify.c │ ├── modrdn.c │ ├── nextid.c │ ├── operational.c │ ├── proto-wt.h │ ├── search.c │ └── tools.c │ ├── backend.c │ ├── backglue.c │ ├── backover.c │ ├── backtrace.c │ ├── bconfig.c │ ├── biglock.c │ ├── bind.c │ ├── cancel.c │ ├── ch_malloc.c │ ├── compare.c │ ├── component.c │ ├── component.h │ ├── config.c │ ├── connection.c │ ├── controls.c │ ├── cr.c │ ├── ctxcsn.c │ ├── daemon.c │ ├── delete.c │ ├── dn.c │ ├── entry.c │ ├── extended.c │ ├── filter.c │ ├── filterentry.c │ ├── frontend.c │ ├── globals.c │ ├── index.c │ ├── init.c │ ├── ldapsync.c │ ├── limits.c │ ├── lock.c │ ├── main.c │ ├── matchedValues.c │ ├── modify.c │ ├── modrdn.c │ ├── mods.c │ ├── module.c │ ├── mr.c │ ├── mra.c │ ├── oc.c │ ├── oidm.c │ ├── operation.c │ ├── operational.c │ ├── overlays │ ├── Makefile.am │ ├── README │ ├── accesslog.c │ ├── auditlog.c │ ├── autoca.c │ ├── collect.c │ ├── constraint.c │ ├── dds.c │ ├── deref.c │ ├── dyngroup.c │ ├── dynlist.c │ ├── memberof.c │ ├── overlays.c │ ├── pcache.c │ ├── ppolicy.c │ ├── refint.c │ ├── retcode.c │ ├── rwm.c │ ├── rwm.h │ ├── rwmconf.c │ ├── rwmdn.c │ ├── rwmmap.c │ ├── seqmod.c │ ├── slapover.txt │ ├── sssvlv.c │ ├── syncprov.c │ ├── translucent.c │ ├── unique.c │ └── valsort.c │ ├── passwd.c │ ├── phonetic.c │ ├── proto-slap.h │ ├── quorum.c │ ├── referral.c │ ├── result.c │ ├── root_dse.c │ ├── rurwl.c │ ├── sasl.c │ ├── saslauthz.c │ ├── schema.c │ ├── schema │ ├── README │ ├── collective.ldif │ ├── collective.schema │ ├── corba.ldif │ ├── corba.schema │ ├── core.ldif │ ├── core.schema │ ├── cosine.ldif │ ├── cosine.schema │ ├── duaconf.ldif │ ├── duaconf.schema │ ├── dyngroup.ldif │ ├── dyngroup.schema │ ├── inetorgperson.ldif │ ├── inetorgperson.schema │ ├── java.ldif │ ├── java.schema │ ├── misc.ldif │ ├── misc.schema │ ├── nis.ldif │ ├── nis.schema │ ├── openldap.ldif │ ├── openldap.schema │ ├── pmi.ldif │ ├── pmi.schema │ ├── ppolicy.ldif │ └── ppolicy.schema │ ├── schema_check.c │ ├── schema_init.c │ ├── schema_prep.c │ ├── schemaparse.c │ ├── search.c │ ├── sets.c │ ├── sets.h │ ├── shell-backends │ ├── Makefile.am │ ├── passwd-shell.c │ ├── shellutil.c │ └── shellutil.h │ ├── sl_malloc.c │ ├── slap.h │ ├── slapacl.c │ ├── slapadd.c │ ├── slapauth.c │ ├── slapcat.c │ ├── slapcommon.c │ ├── slapcommon.h │ ├── slapconfig.h │ ├── slapd.conf.in │ ├── slapd.ldif.in │ ├── slapdn.c │ ├── slapi │ ├── Makefile.am │ ├── TODO │ ├── plugin.c │ ├── printmsg.c │ ├── proto-slapi.h │ ├── slapi.h │ ├── slapi_dn.c │ ├── slapi_ext.c │ ├── slapi_ops.c │ ├── slapi_overlay.c │ ├── slapi_pblock.c │ └── slapi_utils.c │ ├── slapindex.c │ ├── slapmodify.c │ ├── slappasswd.c │ ├── slapschema.c │ ├── slaptest.c │ ├── starttls.c │ ├── str2filter.c │ ├── syncrepl.c │ ├── syntax.c │ ├── txn.c │ ├── unbind.c │ ├── user.c │ └── value.c └── tests ├── Makefile.am ├── README ├── data ├── aci.out ├── acl.out.master ├── certificate.out ├── certificate.tls ├── chain.out ├── chainmod.out ├── chainref.out ├── compsearch.out ├── constraint │ ├── constraint.out │ ├── root.ldif │ ├── t_fail_01.ldif │ ├── t_fail_02.ldif │ ├── t_fail_03.ldif │ ├── t_fail_04.ldif │ ├── t_fail_05.ldif │ ├── t_fail_06.ldif │ ├── t_fail_07.ldif │ ├── t_fail_08.ldif │ ├── t_fail_09.ldif │ ├── t_fail_10.ldif │ ├── t_fail_11.ldif │ ├── t_fail_12.ldif │ ├── t_fail_13.ldif │ ├── t_fail_14.ldif │ ├── t_fail_15.ldif │ ├── t_fail_16.ldif │ ├── t_ok_01.ldif │ ├── t_ok_02.ldif │ ├── t_ok_03.ldif │ ├── t_ok_04.ldif │ ├── t_ok_05.ldif │ ├── t_ok_06.ldif │ ├── t_ok_07.ldif │ ├── t_ok_08.ldif │ ├── t_ok_09.ldif │ ├── t_ok_10.ldif │ ├── t_ok_11.ldif │ ├── t_ok_12.ldif │ ├── t_ok_13.ldif │ ├── t_ok_14.ldif │ ├── t_ok_15.ldif │ └── user.ldif ├── dds.out ├── ditcontentrules.conf ├── dn.out ├── do_add.1 ├── do_add.2 ├── do_add.3 ├── do_add.4 ├── do_bind.0 ├── do_modify.0 ├── do_modrdn.0 ├── do_read.0 ├── do_search.0 ├── dynlist.out ├── emptydn.out ├── emptydn.out.slapadd ├── gluesync.out ├── idassert.out ├── lang-out.ldif ├── ldapglue.out ├── ldapglueanonymous.out ├── manage.out ├── memberof-refint.out ├── memberof.out ├── meta.out ├── metaconcurrency.out ├── modify.out.master ├── modrdn.out.master.0 ├── modrdn.out.master.1 ├── modrdn.out.master.2 ├── modrdn.out.master.3 ├── monitor1.out ├── monitor2.out ├── monitor3.out ├── monitor4.out ├── ndb.conf ├── nis_sample.ldif ├── passwd.ldif ├── pcache.out ├── ppolicy.ldif ├── referrals.ldif ├── referrals.out ├── regressions │ ├── README │ ├── its4184 │ │ ├── README │ │ ├── adds.ldif │ │ ├── its4184 │ │ ├── mods.ldif │ │ └── slapd.conf │ ├── its4326 │ │ ├── its4326 │ │ └── slapd.conf │ ├── its4336 │ │ ├── its4336 │ │ └── slapd.conf │ ├── its4337 │ │ ├── config.out │ │ ├── its4337 │ │ └── slapd.conf │ ├── its4448 │ │ ├── its4448 │ │ └── slapd-meta.conf │ ├── its6794 │ │ ├── its6794 │ │ └── slapd-glue.conf │ ├── its8444 │ │ ├── its8444 │ │ ├── slapd-provider1.ldif │ │ ├── slapd-provider2.ldif │ │ ├── slapd-provider3.ldif │ │ └── slapd-provider4.ldif │ ├── its8521 │ │ ├── its8521 │ │ ├── slapd-consumer.ldif │ │ └── slapd-provider.ldif │ ├── its8616 │ │ ├── its8616 │ │ └── slapd-provider.ldif │ ├── its8663 │ │ ├── its8663 │ │ └── slapd-provider.ldif │ ├── its8667 │ │ ├── accounting.ldif │ │ ├── administrative.ldif │ │ ├── its8667 │ │ ├── janitorial.ldif │ │ ├── root.ldif │ │ └── slapd.ldif │ ├── its8752 │ │ ├── its8752 │ │ ├── slapd.conf │ │ └── slapd.conf.mmr │ └── its8800 │ │ ├── db.ldif │ │ ├── its8800 │ │ ├── slapd-provider1.ldif │ │ ├── slapd-provider2.ldif │ │ ├── slapd-provider3.ldif │ │ └── slapd-provider4.ldif ├── relay.out ├── retcode.conf ├── rootdse.ldif ├── search.out.master ├── search.out.xsearch ├── slapd-2db.conf ├── slapd-aci.conf ├── slapd-acl.conf ├── slapd-cache-master-proxyauthz.conf ├── slapd-cache-master.conf ├── slapd-chain1.conf ├── slapd-chain2.conf ├── slapd-component.conf ├── slapd-config-naked.conf ├── slapd-config-undo.conf ├── slapd-dds.conf ├── slapd-deltasync-master.conf ├── slapd-deltasync-slave.conf ├── slapd-dn.conf ├── slapd-dnssrv.conf ├── slapd-dynamic.ldif ├── slapd-dynlist.conf ├── slapd-emptydn.conf ├── slapd-glue-ldap.conf ├── slapd-glue-syncrepl1.conf ├── slapd-glue-syncrepl2.conf ├── slapd-glue.conf ├── slapd-idassert.conf ├── slapd-ldapglue.conf ├── slapd-ldapgluegroups.conf ├── slapd-ldapgluepeople.conf ├── slapd-limits.conf ├── slapd-master.conf ├── slapd-meta-target1.conf ├── slapd-meta-target2.conf ├── slapd-meta.conf ├── slapd-nis-master.conf ├── slapd-passwd.conf ├── slapd-pcache.conf ├── slapd-ppolicy.conf ├── slapd-proxyauthz.conf ├── slapd-pw.conf ├── slapd-ref-slave.conf ├── slapd-referrals.conf ├── slapd-refint.conf ├── slapd-relay.conf ├── slapd-repl-slave-remote.conf ├── slapd-retcode.conf ├── slapd-schema.conf ├── slapd-sql-syncrepl-master.conf ├── slapd-sql.conf ├── slapd-syncrepl-master.conf ├── slapd-syncrepl-multiproxy.conf ├── slapd-syncrepl-slave-persist-ldap.conf ├── slapd-syncrepl-slave-persist1.conf ├── slapd-syncrepl-slave-persist2.conf ├── slapd-syncrepl-slave-persist3.conf ├── slapd-syncrepl-slave-refresh1.conf ├── slapd-syncrepl-slave-refresh2.conf ├── slapd-tls-sasl.conf ├── slapd-tls.conf ├── slapd-translucent-local.conf ├── slapd-translucent-remote.conf ├── slapd-unique.conf ├── slapd-valregex.conf ├── slapd-valsort.conf ├── slapd-whoami.conf ├── slapd.conf ├── slapd2.conf ├── sql-concurrency │ ├── do_add.1 │ ├── do_add.2 │ ├── do_add.3 │ ├── do_add.4 │ ├── do_bind.0 │ ├── do_modrdn.0 │ ├── do_read.0 │ └── do_search.0 ├── sql-read.out ├── sql-write.out ├── subtree-rename.out ├── test-chain1.ldif ├── test-chain2.ldif ├── test-compmatch.ldif ├── test-dn.ldif ├── test-emptydn1.ldif ├── test-emptydn2.ldif ├── test-glued.ldif ├── test-idassert1.ldif ├── test-idassert2.ldif ├── test-lang.ldif ├── test-ldapglue.ldif ├── test-ldapgluegroups.ldif ├── test-ldapgluepeople.ldif ├── test-limits.ldif ├── test-meta.ldif ├── test-modify.ldif ├── test-ordered-cp.ldif ├── test-ordered-nocp.ldif ├── test-ordered.ldif ├── test-refint.ldif ├── test-reordered.ldif ├── test-translucent-add.ldif ├── test-translucent-config.ldif ├── test-translucent-data.ldif ├── test-translucent-merged.ldif ├── test-unique.ldif ├── test-unordered.ldif ├── test-valsort.ldif ├── test-whoami.ldif ├── test.ldif ├── test.schema ├── tls │ ├── ca │ │ ├── certs │ │ │ └── testsuiteCA.crt │ │ └── private │ │ │ └── testsuiteCA.key │ ├── certs │ │ ├── bjensen@mailgw.example.com.crt │ │ └── localhost.crt │ ├── conf │ │ └── openssl.cnf │ ├── create-crt.sh │ └── private │ │ ├── bjensen@mailgw.example.com.key │ │ └── localhost.key ├── valsort1.out ├── valsort2.out └── valsort3.out ├── progs ├── Makefile.am ├── ldif-filter.c ├── slapd-addel.c ├── slapd-auth.c ├── slapd-bind.c ├── slapd-common.c ├── slapd-common.h ├── slapd-modify.c ├── slapd-modrdn.c ├── slapd-mtread.c ├── slapd-read.c ├── slapd-search.c └── slapd-tester.c ├── run.in └── scripts ├── all ├── defines.sh ├── its-all ├── passwd-search ├── relay ├── sql-all ├── sql-test000-read ├── sql-test001-concurrency ├── sql-test900-write ├── sql-test901-syncrepl ├── start-server ├── start-server-nolog ├── start-server2 ├── start-server2-nolog ├── startup_nis_ldap_server.sh ├── test000-mdbx ├── test000-rootdse ├── test001-slapadd ├── test002-populate ├── test003-search ├── test004-modify ├── test005-modrdn ├── test006-acls ├── test007-slapmodify ├── test008-concurrency ├── test009-referral ├── test010-passwd ├── test011-glue-slapadd ├── test012-glue-populate ├── test013-language ├── test014-whoami ├── test015-xsearch ├── test016-subref ├── test017-syncrepl-refresh ├── test018-syncrepl-persist ├── test019-syncrepl-cascade ├── test020-pcache ├── test021-certificate ├── test022-ppolicy ├── test023-refint ├── test024-unique ├── test025-limits ├── test026-dn ├── test027-emptydn ├── test028-idassert ├── test029-ldapglue ├── test030-relay ├── test031-component-filter ├── test032-chain ├── test033-syncrepl-glue ├── test034-translucent ├── test035-meta ├── test036-meta-concurrency ├── test037-manage ├── test038-retcode ├── test039-glue-ldap-concurrency ├── test040-subtree-rename ├── test041-aci ├── test042-valsort ├── test043-syncrepl-delta ├── test044-dynlist ├── test045-syncrepl-proxied ├── test046-dds ├── test047-ldap ├── test048-syncrepl-multiproxy ├── test049-syncrepl-config ├── test050-syncrepl-multimaster ├── test051-config-undo ├── test052-memberof ├── test053-syncprov-glue ├── test054-syncrepl-parallel-load ├── test055-valregex ├── test056-monitor ├── test057-memberof-refint ├── test058-syncrepl-asymmetric ├── test059-syncrepl-slave-config ├── test060-mt-hot ├── test061-syncrepl-initiation ├── test062-config-delete ├── test063-syncrepl-delta-multimaster ├── test064-constraint ├── test065-proxyauthz ├── test066-autoca ├── test067-tls ├── test068-sasl-tls-external ├── test069-delta-multimaster-starttls ├── test070-delta-multimaster-ldaps └── valgrind.supp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/.clang-format -------------------------------------------------------------------------------- /ANNOUNCEMENT.OpenLDAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/ANNOUNCEMENT.OpenLDAP -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.OpenLDAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/CHANGES.OpenLDAP -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- 1 | CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | LICENSE -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | NEWS.md -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/NEWS.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.OpenLDAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/README.OpenLDAP -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/README.md -------------------------------------------------------------------------------- /TODO.OpenLDAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/TODO.OpenLDAP -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/TODO.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /clients/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/Makefile.am -------------------------------------------------------------------------------- /clients/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/Makefile.am -------------------------------------------------------------------------------- /clients/tools/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/common.c -------------------------------------------------------------------------------- /clients/tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/common.h -------------------------------------------------------------------------------- /clients/tools/ldapcompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapcompare.c -------------------------------------------------------------------------------- /clients/tools/ldapdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapdelete.c -------------------------------------------------------------------------------- /clients/tools/ldapexop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapexop.c -------------------------------------------------------------------------------- /clients/tools/ldapmodify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapmodify.c -------------------------------------------------------------------------------- /clients/tools/ldapmodrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapmodrdn.c -------------------------------------------------------------------------------- /clients/tools/ldappasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldappasswd.c -------------------------------------------------------------------------------- /clients/tools/ldapsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapsearch.c -------------------------------------------------------------------------------- /clients/tools/ldapurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapurl.c -------------------------------------------------------------------------------- /clients/tools/ldapvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapvc.c -------------------------------------------------------------------------------- /clients/tools/ldapwhoami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/clients/tools/ldapwhoami.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/ConfigOIDs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/ConfigOIDs -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/docker/Dockerfile -------------------------------------------------------------------------------- /contrib/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/docker/README.md -------------------------------------------------------------------------------- /contrib/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/docker/entrypoint.sh -------------------------------------------------------------------------------- /contrib/docker/slapd.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/docker/slapd.sample.conf -------------------------------------------------------------------------------- /contrib/slapd-modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/Makefile.am -------------------------------------------------------------------------------- /contrib/slapd-modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/README -------------------------------------------------------------------------------- /contrib/slapd-modules/acl/gssacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/acl/gssacl.c -------------------------------------------------------------------------------- /contrib/slapd-modules/allop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/allop/README -------------------------------------------------------------------------------- /contrib/slapd-modules/kinit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/kinit/README -------------------------------------------------------------------------------- /contrib/slapd-modules/man.footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/man.footer -------------------------------------------------------------------------------- /contrib/slapd-modules/nops/nops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/nops/nops.c -------------------------------------------------------------------------------- /contrib/slapd-modules/nssov/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/nssov/README -------------------------------------------------------------------------------- /contrib/slapd-modules/nssov/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/nssov/host.c -------------------------------------------------------------------------------- /contrib/slapd-modules/nssov/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/nssov/pam.c -------------------------------------------------------------------------------- /contrib/slapd-modules/nssov/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/nssov/rpc.c -------------------------------------------------------------------------------- /contrib/slapd-modules/usn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/usn/README -------------------------------------------------------------------------------- /contrib/slapd-modules/usn/usn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/usn/usn.c -------------------------------------------------------------------------------- /contrib/slapd-modules/vc/vc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-modules/vc/vc.c -------------------------------------------------------------------------------- /contrib/slapd-tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-tools/Makefile.am -------------------------------------------------------------------------------- /contrib/slapd-tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-tools/README -------------------------------------------------------------------------------- /contrib/slapd-tools/statslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-tools/statslog -------------------------------------------------------------------------------- /contrib/slapd-tools/wrap_slap_ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapd-tools/wrap_slap_ops -------------------------------------------------------------------------------- /contrib/slapi-plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/contrib/slapi-plugins/Makefile.am -------------------------------------------------------------------------------- /doc/devel/OIDs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/OIDs -------------------------------------------------------------------------------- /doc/devel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/README -------------------------------------------------------------------------------- /doc/devel/args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/args -------------------------------------------------------------------------------- /doc/devel/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/template.c -------------------------------------------------------------------------------- /doc/devel/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/todo -------------------------------------------------------------------------------- /doc/devel/toolargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/toolargs -------------------------------------------------------------------------------- /doc/devel/utfconv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/devel/utfconv.txt -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/en/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/Makefile.am -------------------------------------------------------------------------------- /doc/man/en/Project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/Project -------------------------------------------------------------------------------- /doc/man/en/man1/ldapcompare.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapcompare.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapdelete.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapdelete.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapexop.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapexop.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapmodify.1.links: -------------------------------------------------------------------------------- 1 | ldapadd.1 2 | -------------------------------------------------------------------------------- /doc/man/en/man1/ldapmodify.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapmodify.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapmodrdn.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapmodrdn.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldappasswd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldappasswd.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapsearch.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapsearch.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapurl.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapurl.soelim -------------------------------------------------------------------------------- /doc/man/en/man1/ldapwhoami.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man1/ldapwhoami.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/lber-decode.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/lber-decode.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/lber-encode.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/lber-encode.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/lber-memory.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/lber-memory.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/lber-types.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/lber-types.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/lber-types.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/lber-types.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_abandon.3.links: -------------------------------------------------------------------------------- 1 | ldap_abandon_ext.3 2 | -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_add.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_add.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_add.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_add.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_bind.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_bind.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_bind.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_bind.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_delete.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_delete.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_dup.3.links: -------------------------------------------------------------------------------- 1 | ldap_destroy.3 2 | -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_dup.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_dup.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_error.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_error.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_error.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_error.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_extended_operation.3.links: -------------------------------------------------------------------------------- 1 | ldap_extended_operation_s.3 2 | 3 | -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_first_attribute.3.links: -------------------------------------------------------------------------------- 1 | ldap_next_attribute.3 2 | -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_get_dn.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_get_dn.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_get_option.3.links: -------------------------------------------------------------------------------- 1 | ldap_set_option.3 2 | -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_memory.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_memory.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_modify.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_modify.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_modrdn.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_modrdn.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_open.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_open.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_open.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_open.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_rename.3.links: -------------------------------------------------------------------------------- 1 | ldap_rename_s.3 2 | -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_rename.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_rename.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_result.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_result.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_schema.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_schema.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_search.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_search.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_sort.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_sort.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_sort.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_sort.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_sync.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_sync.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_tls.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_tls.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_tls.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_tls.soelim -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_url.3.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_url.3.links -------------------------------------------------------------------------------- /doc/man/en/man3/ldap_url.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man3/ldap_url.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/ldap.conf.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/ldap.conf.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/ldif.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/ldif.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-bdb.5.links: -------------------------------------------------------------------------------- 1 | slapd-hdb.5 2 | -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-bdb.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-bdb.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-ldap.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-ldap.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-ldif.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-ldif.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-mdb.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-mdb.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-meta.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-meta.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-ndb.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-ndb.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-null.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-null.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-perl.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-perl.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-relay.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-relay.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-shell.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-shell.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-sock.5.links: -------------------------------------------------------------------------------- 1 | slapo-sock.5 2 | -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-sock.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-sock.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-sql.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-sql.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd-wt.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd-wt.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapd.conf.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapd.conf.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapo-chain.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapo-chain.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapo-dds.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapo-dds.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapo-pbind.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapo-pbind.soelim -------------------------------------------------------------------------------- /doc/man/en/man5/slapo-rwm.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man5/slapo-rwm.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapacl.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapacl.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapadd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapadd.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapauth.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapauth.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapcat.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapcat.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapd.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapdn.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapdn.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapindex.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapindex.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapmodify.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapmodify.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slappasswd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slappasswd.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slapschema.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slapschema.soelim -------------------------------------------------------------------------------- /doc/man/en/man8/slaptest.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/en/man8/slaptest.soelim -------------------------------------------------------------------------------- /doc/man/ru/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/Makefile.am -------------------------------------------------------------------------------- /doc/man/ru/Project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/Project -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapcompare.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapcompare.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapdelete.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapdelete.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapexop.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapexop.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapmodify.1.links: -------------------------------------------------------------------------------- 1 | ldapadd.1 2 | -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapmodify.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapmodify.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapmodrdn.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapmodrdn.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldappasswd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldappasswd.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapsearch.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapsearch.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapurl.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapurl.soelim -------------------------------------------------------------------------------- /doc/man/ru/man1/ldapwhoami.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man1/ldapwhoami.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/ldap.conf.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/ldap.conf.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/ldif.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/ldif.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-bdb.5.links: -------------------------------------------------------------------------------- 1 | slapd-hdb.5 2 | -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-bdb.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-bdb.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-ldap.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-ldap.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-ldbm.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-ldbm.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-ldif.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-ldif.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-mdb.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-mdb.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-meta.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-meta.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-ndb.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-ndb.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-null.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-null.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-perl.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-perl.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-relay.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-relay.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-shell.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-shell.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-sock.5.links: -------------------------------------------------------------------------------- 1 | slapo-sock.5 2 | -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-sock.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-sock.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd-sql.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd-sql.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapd.conf.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapd.conf.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapo-chain.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapo-chain.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapo-dds.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapo-dds.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapo-pbind.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapo-pbind.soelim -------------------------------------------------------------------------------- /doc/man/ru/man5/slapo-rwm.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man5/slapo-rwm.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapacl.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapacl.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapadd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapadd.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapauth.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapauth.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapcat.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapcat.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapd.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapdn.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapdn.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapindex.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapindex.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slappasswd.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slappasswd.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slapschema.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slapschema.soelim -------------------------------------------------------------------------------- /doc/man/ru/man8/slaptest.soelim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/doc/man/ru/man8/slaptest.soelim -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/ac/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/alloca.h -------------------------------------------------------------------------------- /include/ac/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/bytes.h -------------------------------------------------------------------------------- /include/ac/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/crypt.h -------------------------------------------------------------------------------- /include/ac/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/ctype.h -------------------------------------------------------------------------------- /include/ac/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/dirent.h -------------------------------------------------------------------------------- /include/ac/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/errno.h -------------------------------------------------------------------------------- /include/ac/fdset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/fdset.h -------------------------------------------------------------------------------- /include/ac/localize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/localize.h -------------------------------------------------------------------------------- /include/ac/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/param.h -------------------------------------------------------------------------------- /include/ac/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/regex.h -------------------------------------------------------------------------------- /include/ac/setproctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/setproctitle.h -------------------------------------------------------------------------------- /include/ac/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/signal.h -------------------------------------------------------------------------------- /include/ac/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/socket.h -------------------------------------------------------------------------------- /include/ac/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/stdarg.h -------------------------------------------------------------------------------- /include/ac/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/stdlib.h -------------------------------------------------------------------------------- /include/ac/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/string.h -------------------------------------------------------------------------------- /include/ac/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/sysexits.h -------------------------------------------------------------------------------- /include/ac/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/syslog.h -------------------------------------------------------------------------------- /include/ac/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/termios.h -------------------------------------------------------------------------------- /include/ac/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/time.h -------------------------------------------------------------------------------- /include/ac/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/unistd.h -------------------------------------------------------------------------------- /include/ac/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ac/wait.h -------------------------------------------------------------------------------- /include/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/avl.h -------------------------------------------------------------------------------- /include/getopt-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/getopt-compat.h -------------------------------------------------------------------------------- /include/lber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lber.h -------------------------------------------------------------------------------- /include/lber_hipagut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lber_hipagut.h -------------------------------------------------------------------------------- /include/lber_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lber_pvt.h -------------------------------------------------------------------------------- /include/lber_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lber_types.h.in -------------------------------------------------------------------------------- /include/ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap.h -------------------------------------------------------------------------------- /include/ldap_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_cdefs.h -------------------------------------------------------------------------------- /include/ldap_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_defaults.h -------------------------------------------------------------------------------- /include/ldap_dirs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_dirs.h.in -------------------------------------------------------------------------------- /include/ldap_features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_features.h.in -------------------------------------------------------------------------------- /include/ldap_int_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_int_thread.h -------------------------------------------------------------------------------- /include/ldap_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_log.h -------------------------------------------------------------------------------- /include/ldap_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_pvt.h -------------------------------------------------------------------------------- /include/ldap_pvt_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_pvt_thread.h -------------------------------------------------------------------------------- /include/ldap_pvt_uc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_pvt_uc.h -------------------------------------------------------------------------------- /include/ldap_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_queue.h -------------------------------------------------------------------------------- /include/ldap_rq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_rq.h -------------------------------------------------------------------------------- /include/ldap_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_schema.h -------------------------------------------------------------------------------- /include/ldap_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldap_utf8.h -------------------------------------------------------------------------------- /include/ldif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/ldif.h -------------------------------------------------------------------------------- /include/lutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil.h -------------------------------------------------------------------------------- /include/lutil_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil_hash.h -------------------------------------------------------------------------------- /include/lutil_ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil_ldap.h -------------------------------------------------------------------------------- /include/lutil_lockf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil_lockf.h -------------------------------------------------------------------------------- /include/lutil_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil_md5.h -------------------------------------------------------------------------------- /include/lutil_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil_meter.h -------------------------------------------------------------------------------- /include/lutil_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/lutil_sha1.h -------------------------------------------------------------------------------- /include/reldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/reldap.h -------------------------------------------------------------------------------- /include/rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/rewrite.h -------------------------------------------------------------------------------- /include/slapi-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/slapi-plugin.h -------------------------------------------------------------------------------- /include/sysexits-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/include/sysexits-compat.h -------------------------------------------------------------------------------- /libraries/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/Makefile.am -------------------------------------------------------------------------------- /libraries/liblunicode/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/Makefile.am -------------------------------------------------------------------------------- /libraries/liblunicode/UCD-Terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/UCD-Terms -------------------------------------------------------------------------------- /libraries/liblunicode/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/api.txt -------------------------------------------------------------------------------- /libraries/liblunicode/bidiapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/bidiapi.txt -------------------------------------------------------------------------------- /libraries/liblunicode/format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/format.txt -------------------------------------------------------------------------------- /libraries/liblunicode/ucdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucdata.c -------------------------------------------------------------------------------- /libraries/liblunicode/ucdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucdata.h -------------------------------------------------------------------------------- /libraries/liblunicode/ucdata.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucdata.man -------------------------------------------------------------------------------- /libraries/liblunicode/ucgendat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucgendat.c -------------------------------------------------------------------------------- /libraries/liblunicode/ucpgba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucpgba.c -------------------------------------------------------------------------------- /libraries/liblunicode/ucpgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucpgba.h -------------------------------------------------------------------------------- /libraries/liblunicode/ucpgba.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucpgba.man -------------------------------------------------------------------------------- /libraries/liblunicode/ucstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ucstr.c -------------------------------------------------------------------------------- /libraries/liblunicode/ure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ure.c -------------------------------------------------------------------------------- /libraries/liblunicode/ure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/ure.h -------------------------------------------------------------------------------- /libraries/liblunicode/urestubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/urestubs.c -------------------------------------------------------------------------------- /libraries/liblunicode/utbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/utbm.c -------------------------------------------------------------------------------- /libraries/liblunicode/utbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/utbm.h -------------------------------------------------------------------------------- /libraries/liblunicode/utbmstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblunicode/utbmstub.c -------------------------------------------------------------------------------- /libraries/liblutil/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/Makefile.am -------------------------------------------------------------------------------- /libraries/liblutil/avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/avl.c -------------------------------------------------------------------------------- /libraries/liblutil/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/base64.c -------------------------------------------------------------------------------- /libraries/liblutil/detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/detach.c -------------------------------------------------------------------------------- /libraries/liblutil/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/entropy.c -------------------------------------------------------------------------------- /libraries/liblutil/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/getopt.c -------------------------------------------------------------------------------- /libraries/liblutil/getpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/getpass.c -------------------------------------------------------------------------------- /libraries/liblutil/getpeereid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/getpeereid.c -------------------------------------------------------------------------------- /libraries/liblutil/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/hash.c -------------------------------------------------------------------------------- /libraries/liblutil/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/lockf.c -------------------------------------------------------------------------------- /libraries/liblutil/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/md5.c -------------------------------------------------------------------------------- /libraries/liblutil/meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/meter.c -------------------------------------------------------------------------------- /libraries/liblutil/passfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/passfile.c -------------------------------------------------------------------------------- /libraries/liblutil/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/passwd.c -------------------------------------------------------------------------------- /libraries/liblutil/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/sasl.c -------------------------------------------------------------------------------- /libraries/liblutil/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/sha1.c -------------------------------------------------------------------------------- /libraries/liblutil/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/signal.c -------------------------------------------------------------------------------- /libraries/liblutil/sockpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/sockpair.c -------------------------------------------------------------------------------- /libraries/liblutil/tavl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/tavl.c -------------------------------------------------------------------------------- /libraries/liblutil/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/utils.c -------------------------------------------------------------------------------- /libraries/liblutil/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/liblutil/uuid.c -------------------------------------------------------------------------------- /libraries/libmdbx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/libmdbx/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/ChangeLog.md -------------------------------------------------------------------------------- /libraries/libmdbx/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/GNUmakefile -------------------------------------------------------------------------------- /libraries/libmdbx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/LICENSE -------------------------------------------------------------------------------- /libraries/libmdbx/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/NOTICE -------------------------------------------------------------------------------- /libraries/libmdbx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/README.md -------------------------------------------------------------------------------- /libraries/libmdbx/VERSION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/VERSION.json -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx.c -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx.c++ -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx.h -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx.h++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx.h++ -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx_chk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx_chk.c -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx_copy.c -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx_drop.c -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx_dump.c -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx_load.c -------------------------------------------------------------------------------- /libraries/libmdbx/mdbx_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/mdbx_stat.c -------------------------------------------------------------------------------- /libraries/libmdbx/ntdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libmdbx/ntdll.def -------------------------------------------------------------------------------- /libraries/libreldap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/Makefile.am -------------------------------------------------------------------------------- /libraries/libreldap/abandon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/abandon.c -------------------------------------------------------------------------------- /libraries/libreldap/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/add.c -------------------------------------------------------------------------------- /libraries/libreldap/addentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/addentry.c -------------------------------------------------------------------------------- /libraries/libreldap/assertion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/assertion.c -------------------------------------------------------------------------------- /libraries/libreldap/bprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/bprint.c -------------------------------------------------------------------------------- /libraries/libreldap/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/cancel.c -------------------------------------------------------------------------------- /libraries/libreldap/charray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/charray.c -------------------------------------------------------------------------------- /libraries/libreldap/check/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/check/test.c -------------------------------------------------------------------------------- /libraries/libreldap/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/compare.c -------------------------------------------------------------------------------- /libraries/libreldap/controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/controls.c -------------------------------------------------------------------------------- /libraries/libreldap/crutch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/crutch.c -------------------------------------------------------------------------------- /libraries/libreldap/cyrus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/cyrus.c -------------------------------------------------------------------------------- /libraries/libreldap/dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/dds.c -------------------------------------------------------------------------------- /libraries/libreldap/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/debug.c -------------------------------------------------------------------------------- /libraries/libreldap/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/decode.c -------------------------------------------------------------------------------- /libraries/libreldap/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/delete.c -------------------------------------------------------------------------------- /libraries/libreldap/deprecated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/deprecated.c -------------------------------------------------------------------------------- /libraries/libreldap/deref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/deref.c -------------------------------------------------------------------------------- /libraries/libreldap/dnssrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/dnssrv.c -------------------------------------------------------------------------------- /libraries/libreldap/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/encode.c -------------------------------------------------------------------------------- /libraries/libreldap/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/error.c -------------------------------------------------------------------------------- /libraries/libreldap/extended.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/extended.c -------------------------------------------------------------------------------- /libraries/libreldap/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/fetch.c -------------------------------------------------------------------------------- /libraries/libreldap/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/filter.c -------------------------------------------------------------------------------- /libraries/libreldap/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/free.c -------------------------------------------------------------------------------- /libraries/libreldap/getattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/getattr.c -------------------------------------------------------------------------------- /libraries/libreldap/getdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/getdn.c -------------------------------------------------------------------------------- /libraries/libreldap/getentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/getentry.c -------------------------------------------------------------------------------- /libraries/libreldap/getvalues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/getvalues.c -------------------------------------------------------------------------------- /libraries/libreldap/gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/gssapi.c -------------------------------------------------------------------------------- /libraries/libreldap/hipagut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/hipagut.c -------------------------------------------------------------------------------- /libraries/libreldap/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/init.c -------------------------------------------------------------------------------- /libraries/libreldap/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/io.c -------------------------------------------------------------------------------- /libraries/libreldap/lbase64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/lbase64.c -------------------------------------------------------------------------------- /libraries/libreldap/lber-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/lber-int.h -------------------------------------------------------------------------------- /libraries/libreldap/ldap-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ldap-int.h -------------------------------------------------------------------------------- /libraries/libreldap/ldap-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ldap-tls.h -------------------------------------------------------------------------------- /libraries/libreldap/ldap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ldap.conf -------------------------------------------------------------------------------- /libraries/libreldap/ldap_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ldap_sync.c -------------------------------------------------------------------------------- /libraries/libreldap/ldif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ldif.c -------------------------------------------------------------------------------- /libraries/libreldap/ldifutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ldifutil.c -------------------------------------------------------------------------------- /libraries/libreldap/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/memory.c -------------------------------------------------------------------------------- /libraries/libreldap/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/messages.c -------------------------------------------------------------------------------- /libraries/libreldap/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/modify.c -------------------------------------------------------------------------------- /libraries/libreldap/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/modrdn.c -------------------------------------------------------------------------------- /libraries/libreldap/msctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/msctrl.c -------------------------------------------------------------------------------- /libraries/libreldap/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ntlm.c -------------------------------------------------------------------------------- /libraries/libreldap/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/open.c -------------------------------------------------------------------------------- /libraries/libreldap/os-ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/os-ip.c -------------------------------------------------------------------------------- /libraries/libreldap/os-local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/os-local.c -------------------------------------------------------------------------------- /libraries/libreldap/pagectrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/pagectrl.c -------------------------------------------------------------------------------- /libraries/libreldap/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/passwd.c -------------------------------------------------------------------------------- /libraries/libreldap/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/posix.c -------------------------------------------------------------------------------- /libraries/libreldap/ppolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/ppolicy.c -------------------------------------------------------------------------------- /libraries/libreldap/references.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/references.c -------------------------------------------------------------------------------- /libraries/libreldap/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/request.c -------------------------------------------------------------------------------- /libraries/libreldap/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/result.c -------------------------------------------------------------------------------- /libraries/libreldap/rq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/rq.c -------------------------------------------------------------------------------- /libraries/libreldap/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/sasl.c -------------------------------------------------------------------------------- /libraries/libreldap/schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/schema.c -------------------------------------------------------------------------------- /libraries/libreldap/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/search.c -------------------------------------------------------------------------------- /libraries/libreldap/sockbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/sockbuf.c -------------------------------------------------------------------------------- /libraries/libreldap/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/sort.c -------------------------------------------------------------------------------- /libraries/libreldap/sortctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/sortctrl.c -------------------------------------------------------------------------------- /libraries/libreldap/stctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/stctrl.c -------------------------------------------------------------------------------- /libraries/libreldap/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/stdio.c -------------------------------------------------------------------------------- /libraries/libreldap/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/string.c -------------------------------------------------------------------------------- /libraries/libreldap/t61.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/t61.c -------------------------------------------------------------------------------- /libraries/libreldap/thr_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/thr_debug.c -------------------------------------------------------------------------------- /libraries/libreldap/thr_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/thr_stub.c -------------------------------------------------------------------------------- /libraries/libreldap/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/threads.c -------------------------------------------------------------------------------- /libraries/libreldap/tls2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/tls2.c -------------------------------------------------------------------------------- /libraries/libreldap/tls_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/tls_g.c -------------------------------------------------------------------------------- /libraries/libreldap/tls_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/tls_m.c -------------------------------------------------------------------------------- /libraries/libreldap/tls_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/tls_o.c -------------------------------------------------------------------------------- /libraries/libreldap/tpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/tpool.c -------------------------------------------------------------------------------- /libraries/libreldap/turn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/turn.c -------------------------------------------------------------------------------- /libraries/libreldap/txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/txn.c -------------------------------------------------------------------------------- /libraries/libreldap/unbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/unbind.c -------------------------------------------------------------------------------- /libraries/libreldap/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/url.c -------------------------------------------------------------------------------- /libraries/libreldap/utf-8-conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/utf-8-conv.c -------------------------------------------------------------------------------- /libraries/libreldap/utf-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/utf-8.c -------------------------------------------------------------------------------- /libraries/libreldap/util-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/util-int.c -------------------------------------------------------------------------------- /libraries/libreldap/vc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/vc.c -------------------------------------------------------------------------------- /libraries/libreldap/vlvctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/vlvctrl.c -------------------------------------------------------------------------------- /libraries/libreldap/whoami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/libreldap/whoami.c -------------------------------------------------------------------------------- /libraries/librewrite/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/Copyright -------------------------------------------------------------------------------- /libraries/librewrite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/Makefile.am -------------------------------------------------------------------------------- /libraries/librewrite/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/config.c -------------------------------------------------------------------------------- /libraries/librewrite/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/context.c -------------------------------------------------------------------------------- /libraries/librewrite/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/info.c -------------------------------------------------------------------------------- /libraries/librewrite/ldapmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/ldapmap.c -------------------------------------------------------------------------------- /libraries/librewrite/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/map.c -------------------------------------------------------------------------------- /libraries/librewrite/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/params.c -------------------------------------------------------------------------------- /libraries/librewrite/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/parse.c -------------------------------------------------------------------------------- /libraries/librewrite/rewrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/rewrite.c -------------------------------------------------------------------------------- /libraries/librewrite/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/rule.c -------------------------------------------------------------------------------- /libraries/librewrite/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/session.c -------------------------------------------------------------------------------- /libraries/librewrite/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/subst.c -------------------------------------------------------------------------------- /libraries/librewrite/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/var.c -------------------------------------------------------------------------------- /libraries/librewrite/xmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/libraries/librewrite/xmap.c -------------------------------------------------------------------------------- /servers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/Makefile.am -------------------------------------------------------------------------------- /servers/slapd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/Makefile.am -------------------------------------------------------------------------------- /servers/slapd/abandon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/abandon.c -------------------------------------------------------------------------------- /servers/slapd/aci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/aci.c -------------------------------------------------------------------------------- /servers/slapd/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/acl.c -------------------------------------------------------------------------------- /servers/slapd/aclparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/aclparse.c -------------------------------------------------------------------------------- /servers/slapd/ad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/ad.c -------------------------------------------------------------------------------- /servers/slapd/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/add.c -------------------------------------------------------------------------------- /servers/slapd/alock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/alock.c -------------------------------------------------------------------------------- /servers/slapd/alock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/alock.h -------------------------------------------------------------------------------- /servers/slapd/at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/at.c -------------------------------------------------------------------------------- /servers/slapd/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/attr.c -------------------------------------------------------------------------------- /servers/slapd/ava.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/ava.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/add.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/attr.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/cache.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/compare.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/config.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/dbcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/dbcache.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/dn2id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/dn2id.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/error.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/idl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/idl.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/idl.h -------------------------------------------------------------------------------- /servers/slapd/back-bdb/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/index.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/init.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/key.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/monitor.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/nextid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/nextid.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/search.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/tools.c -------------------------------------------------------------------------------- /servers/slapd/back-bdb/trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-bdb/trans.c -------------------------------------------------------------------------------- /servers/slapd/back-dnssrv/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-dnssrv/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-dnssrv/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-dnssrv/init.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/add.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/chain.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/config.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/init.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/pbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/pbind.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/search.c -------------------------------------------------------------------------------- /servers/slapd/back-ldap/unbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldap/unbind.c -------------------------------------------------------------------------------- /servers/slapd/back-ldif/ldif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ldif/ldif.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/add.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/attr.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/compare.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/config.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/dn2id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/dn2id.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/idl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/idl.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/idl.h -------------------------------------------------------------------------------- /servers/slapd/back-mdb/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/index.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/init.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/key.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/monitor.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/nextid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/nextid.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/search.c -------------------------------------------------------------------------------- /servers/slapd/back-mdb/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-mdb/tools.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/add.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/config.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/conn.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/init.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/map.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/search.c -------------------------------------------------------------------------------- /servers/slapd/back-meta/unbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-meta/unbind.c -------------------------------------------------------------------------------- /servers/slapd/back-monitor/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-monitor/log.c -------------------------------------------------------------------------------- /servers/slapd/back-monitor/rww.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-monitor/rww.c -------------------------------------------------------------------------------- /servers/slapd/back-ndb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ndb/TODO -------------------------------------------------------------------------------- /servers/slapd/back-ndb/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ndb/add.cpp -------------------------------------------------------------------------------- /servers/slapd/back-ndb/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ndb/bind.cpp -------------------------------------------------------------------------------- /servers/slapd/back-ndb/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ndb/init.cpp -------------------------------------------------------------------------------- /servers/slapd/back-ndb/ndbio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ndb/ndbio.cpp -------------------------------------------------------------------------------- /servers/slapd/back-ndb/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-ndb/tools.cpp -------------------------------------------------------------------------------- /servers/slapd/back-null/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-null/README -------------------------------------------------------------------------------- /servers/slapd/back-null/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-null/null.c -------------------------------------------------------------------------------- /servers/slapd/back-passwd/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-passwd/init.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/README -------------------------------------------------------------------------------- /servers/slapd/back-perl/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/add.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/close.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/config.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/init.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-perl/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-perl/search.c -------------------------------------------------------------------------------- /servers/slapd/back-relay/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-relay/README -------------------------------------------------------------------------------- /servers/slapd/back-relay/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-relay/init.c -------------------------------------------------------------------------------- /servers/slapd/back-relay/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-relay/op.c -------------------------------------------------------------------------------- /servers/slapd/back-shell/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-shell/add.c -------------------------------------------------------------------------------- /servers/slapd/back-shell/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-shell/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-shell/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-shell/fork.c -------------------------------------------------------------------------------- /servers/slapd/back-shell/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-shell/init.c -------------------------------------------------------------------------------- /servers/slapd/back-shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-shell/shell.h -------------------------------------------------------------------------------- /servers/slapd/back-sock/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/add.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/config.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/init.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/result.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/search.c -------------------------------------------------------------------------------- /servers/slapd/back-sock/unbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sock/unbind.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/add.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/api.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/compare.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/config.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/docs/bugs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/docs/bugs -------------------------------------------------------------------------------- /servers/slapd/back-sql/docs/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/docs/todo -------------------------------------------------------------------------------- /servers/slapd/back-sql/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/init.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/search.c -------------------------------------------------------------------------------- /servers/slapd/back-sql/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-sql/util.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/add.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/attr.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/back-wt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/back-wt.h -------------------------------------------------------------------------------- /servers/slapd/back-wt/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/bind.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/cache.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/compare.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/config.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/ctx.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/delete.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/dn2entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/dn2entry.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/dn2id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/dn2id.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/extended.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/extended.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/id2entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/id2entry.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/idl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/idl.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/idl.h -------------------------------------------------------------------------------- /servers/slapd/back-wt/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/index.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/init.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/key.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/modify.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/nextid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/nextid.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/proto-wt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/proto-wt.h -------------------------------------------------------------------------------- /servers/slapd/back-wt/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/search.c -------------------------------------------------------------------------------- /servers/slapd/back-wt/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/back-wt/tools.c -------------------------------------------------------------------------------- /servers/slapd/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/backend.c -------------------------------------------------------------------------------- /servers/slapd/backglue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/backglue.c -------------------------------------------------------------------------------- /servers/slapd/backover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/backover.c -------------------------------------------------------------------------------- /servers/slapd/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/backtrace.c -------------------------------------------------------------------------------- /servers/slapd/bconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/bconfig.c -------------------------------------------------------------------------------- /servers/slapd/biglock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/biglock.c -------------------------------------------------------------------------------- /servers/slapd/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/bind.c -------------------------------------------------------------------------------- /servers/slapd/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/cancel.c -------------------------------------------------------------------------------- /servers/slapd/ch_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/ch_malloc.c -------------------------------------------------------------------------------- /servers/slapd/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/compare.c -------------------------------------------------------------------------------- /servers/slapd/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/component.c -------------------------------------------------------------------------------- /servers/slapd/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/component.h -------------------------------------------------------------------------------- /servers/slapd/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/config.c -------------------------------------------------------------------------------- /servers/slapd/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/connection.c -------------------------------------------------------------------------------- /servers/slapd/controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/controls.c -------------------------------------------------------------------------------- /servers/slapd/cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/cr.c -------------------------------------------------------------------------------- /servers/slapd/ctxcsn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/ctxcsn.c -------------------------------------------------------------------------------- /servers/slapd/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/daemon.c -------------------------------------------------------------------------------- /servers/slapd/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/delete.c -------------------------------------------------------------------------------- /servers/slapd/dn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/dn.c -------------------------------------------------------------------------------- /servers/slapd/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/entry.c -------------------------------------------------------------------------------- /servers/slapd/extended.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/extended.c -------------------------------------------------------------------------------- /servers/slapd/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/filter.c -------------------------------------------------------------------------------- /servers/slapd/filterentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/filterentry.c -------------------------------------------------------------------------------- /servers/slapd/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/frontend.c -------------------------------------------------------------------------------- /servers/slapd/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/globals.c -------------------------------------------------------------------------------- /servers/slapd/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/index.c -------------------------------------------------------------------------------- /servers/slapd/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/init.c -------------------------------------------------------------------------------- /servers/slapd/ldapsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/ldapsync.c -------------------------------------------------------------------------------- /servers/slapd/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/limits.c -------------------------------------------------------------------------------- /servers/slapd/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/lock.c -------------------------------------------------------------------------------- /servers/slapd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/main.c -------------------------------------------------------------------------------- /servers/slapd/matchedValues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/matchedValues.c -------------------------------------------------------------------------------- /servers/slapd/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/modify.c -------------------------------------------------------------------------------- /servers/slapd/modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/modrdn.c -------------------------------------------------------------------------------- /servers/slapd/mods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/mods.c -------------------------------------------------------------------------------- /servers/slapd/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/module.c -------------------------------------------------------------------------------- /servers/slapd/mr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/mr.c -------------------------------------------------------------------------------- /servers/slapd/mra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/mra.c -------------------------------------------------------------------------------- /servers/slapd/oc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/oc.c -------------------------------------------------------------------------------- /servers/slapd/oidm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/oidm.c -------------------------------------------------------------------------------- /servers/slapd/operation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/operation.c -------------------------------------------------------------------------------- /servers/slapd/operational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/operational.c -------------------------------------------------------------------------------- /servers/slapd/overlays/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/README -------------------------------------------------------------------------------- /servers/slapd/overlays/autoca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/autoca.c -------------------------------------------------------------------------------- /servers/slapd/overlays/collect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/collect.c -------------------------------------------------------------------------------- /servers/slapd/overlays/dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/dds.c -------------------------------------------------------------------------------- /servers/slapd/overlays/deref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/deref.c -------------------------------------------------------------------------------- /servers/slapd/overlays/dynlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/dynlist.c -------------------------------------------------------------------------------- /servers/slapd/overlays/pcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/pcache.c -------------------------------------------------------------------------------- /servers/slapd/overlays/ppolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/ppolicy.c -------------------------------------------------------------------------------- /servers/slapd/overlays/refint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/refint.c -------------------------------------------------------------------------------- /servers/slapd/overlays/retcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/retcode.c -------------------------------------------------------------------------------- /servers/slapd/overlays/rwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/rwm.c -------------------------------------------------------------------------------- /servers/slapd/overlays/rwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/rwm.h -------------------------------------------------------------------------------- /servers/slapd/overlays/rwmconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/rwmconf.c -------------------------------------------------------------------------------- /servers/slapd/overlays/rwmdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/rwmdn.c -------------------------------------------------------------------------------- /servers/slapd/overlays/rwmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/rwmmap.c -------------------------------------------------------------------------------- /servers/slapd/overlays/seqmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/seqmod.c -------------------------------------------------------------------------------- /servers/slapd/overlays/sssvlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/sssvlv.c -------------------------------------------------------------------------------- /servers/slapd/overlays/unique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/unique.c -------------------------------------------------------------------------------- /servers/slapd/overlays/valsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/overlays/valsort.c -------------------------------------------------------------------------------- /servers/slapd/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/passwd.c -------------------------------------------------------------------------------- /servers/slapd/phonetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/phonetic.c -------------------------------------------------------------------------------- /servers/slapd/proto-slap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/proto-slap.h -------------------------------------------------------------------------------- /servers/slapd/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/quorum.c -------------------------------------------------------------------------------- /servers/slapd/referral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/referral.c -------------------------------------------------------------------------------- /servers/slapd/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/result.c -------------------------------------------------------------------------------- /servers/slapd/root_dse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/root_dse.c -------------------------------------------------------------------------------- /servers/slapd/rurwl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/rurwl.c -------------------------------------------------------------------------------- /servers/slapd/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/sasl.c -------------------------------------------------------------------------------- /servers/slapd/saslauthz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/saslauthz.c -------------------------------------------------------------------------------- /servers/slapd/schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema.c -------------------------------------------------------------------------------- /servers/slapd/schema/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/README -------------------------------------------------------------------------------- /servers/slapd/schema/corba.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/corba.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/core.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/core.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/core.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/core.schema -------------------------------------------------------------------------------- /servers/slapd/schema/cosine.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/cosine.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/java.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/java.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/java.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/java.schema -------------------------------------------------------------------------------- /servers/slapd/schema/misc.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/misc.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/misc.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/misc.schema -------------------------------------------------------------------------------- /servers/slapd/schema/nis.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/nis.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/nis.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/nis.schema -------------------------------------------------------------------------------- /servers/slapd/schema/pmi.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/pmi.ldif -------------------------------------------------------------------------------- /servers/slapd/schema/pmi.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema/pmi.schema -------------------------------------------------------------------------------- /servers/slapd/schema_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema_check.c -------------------------------------------------------------------------------- /servers/slapd/schema_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema_init.c -------------------------------------------------------------------------------- /servers/slapd/schema_prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schema_prep.c -------------------------------------------------------------------------------- /servers/slapd/schemaparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/schemaparse.c -------------------------------------------------------------------------------- /servers/slapd/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/search.c -------------------------------------------------------------------------------- /servers/slapd/sets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/sets.c -------------------------------------------------------------------------------- /servers/slapd/sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/sets.h -------------------------------------------------------------------------------- /servers/slapd/sl_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/sl_malloc.c -------------------------------------------------------------------------------- /servers/slapd/slap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slap.h -------------------------------------------------------------------------------- /servers/slapd/slapacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapacl.c -------------------------------------------------------------------------------- /servers/slapd/slapadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapadd.c -------------------------------------------------------------------------------- /servers/slapd/slapauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapauth.c -------------------------------------------------------------------------------- /servers/slapd/slapcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapcat.c -------------------------------------------------------------------------------- /servers/slapd/slapcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapcommon.c -------------------------------------------------------------------------------- /servers/slapd/slapcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapcommon.h -------------------------------------------------------------------------------- /servers/slapd/slapconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapconfig.h -------------------------------------------------------------------------------- /servers/slapd/slapd.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapd.conf.in -------------------------------------------------------------------------------- /servers/slapd/slapd.ldif.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapd.ldif.in -------------------------------------------------------------------------------- /servers/slapd/slapdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapdn.c -------------------------------------------------------------------------------- /servers/slapd/slapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/Makefile.am -------------------------------------------------------------------------------- /servers/slapd/slapi/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/TODO -------------------------------------------------------------------------------- /servers/slapd/slapi/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/plugin.c -------------------------------------------------------------------------------- /servers/slapd/slapi/printmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/printmsg.c -------------------------------------------------------------------------------- /servers/slapd/slapi/slapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/slapi.h -------------------------------------------------------------------------------- /servers/slapd/slapi/slapi_dn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/slapi_dn.c -------------------------------------------------------------------------------- /servers/slapd/slapi/slapi_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/slapi_ext.c -------------------------------------------------------------------------------- /servers/slapd/slapi/slapi_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapi/slapi_ops.c -------------------------------------------------------------------------------- /servers/slapd/slapindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapindex.c -------------------------------------------------------------------------------- /servers/slapd/slapmodify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapmodify.c -------------------------------------------------------------------------------- /servers/slapd/slappasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slappasswd.c -------------------------------------------------------------------------------- /servers/slapd/slapschema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slapschema.c -------------------------------------------------------------------------------- /servers/slapd/slaptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/slaptest.c -------------------------------------------------------------------------------- /servers/slapd/starttls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/starttls.c -------------------------------------------------------------------------------- /servers/slapd/str2filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/str2filter.c -------------------------------------------------------------------------------- /servers/slapd/syncrepl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/syncrepl.c -------------------------------------------------------------------------------- /servers/slapd/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/syntax.c -------------------------------------------------------------------------------- /servers/slapd/txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/txn.c -------------------------------------------------------------------------------- /servers/slapd/unbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/unbind.c -------------------------------------------------------------------------------- /servers/slapd/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/user.c -------------------------------------------------------------------------------- /servers/slapd/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/servers/slapd/value.c -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/README -------------------------------------------------------------------------------- /tests/data/aci.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/aci.out -------------------------------------------------------------------------------- /tests/data/acl.out.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/acl.out.master -------------------------------------------------------------------------------- /tests/data/certificate.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/certificate.out -------------------------------------------------------------------------------- /tests/data/certificate.tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/certificate.tls -------------------------------------------------------------------------------- /tests/data/chain.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/chain.out -------------------------------------------------------------------------------- /tests/data/chainmod.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/chainmod.out -------------------------------------------------------------------------------- /tests/data/chainref.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/chainref.out -------------------------------------------------------------------------------- /tests/data/compsearch.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/compsearch.out -------------------------------------------------------------------------------- /tests/data/constraint/root.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/constraint/root.ldif -------------------------------------------------------------------------------- /tests/data/constraint/user.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/constraint/user.ldif -------------------------------------------------------------------------------- /tests/data/dds.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/dds.out -------------------------------------------------------------------------------- /tests/data/ditcontentrules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/ditcontentrules.conf -------------------------------------------------------------------------------- /tests/data/dn.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/dn.out -------------------------------------------------------------------------------- /tests/data/do_add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_add.1 -------------------------------------------------------------------------------- /tests/data/do_add.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_add.2 -------------------------------------------------------------------------------- /tests/data/do_add.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_add.3 -------------------------------------------------------------------------------- /tests/data/do_add.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_add.4 -------------------------------------------------------------------------------- /tests/data/do_bind.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_bind.0 -------------------------------------------------------------------------------- /tests/data/do_modify.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_modify.0 -------------------------------------------------------------------------------- /tests/data/do_modrdn.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_modrdn.0 -------------------------------------------------------------------------------- /tests/data/do_read.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_read.0 -------------------------------------------------------------------------------- /tests/data/do_search.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/do_search.0 -------------------------------------------------------------------------------- /tests/data/dynlist.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/dynlist.out -------------------------------------------------------------------------------- /tests/data/emptydn.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/emptydn.out -------------------------------------------------------------------------------- /tests/data/emptydn.out.slapadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/emptydn.out.slapadd -------------------------------------------------------------------------------- /tests/data/gluesync.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/gluesync.out -------------------------------------------------------------------------------- /tests/data/idassert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/idassert.out -------------------------------------------------------------------------------- /tests/data/lang-out.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/lang-out.ldif -------------------------------------------------------------------------------- /tests/data/ldapglue.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/ldapglue.out -------------------------------------------------------------------------------- /tests/data/ldapglueanonymous.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/ldapglueanonymous.out -------------------------------------------------------------------------------- /tests/data/manage.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/manage.out -------------------------------------------------------------------------------- /tests/data/memberof-refint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/memberof-refint.out -------------------------------------------------------------------------------- /tests/data/memberof.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/memberof.out -------------------------------------------------------------------------------- /tests/data/meta.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/meta.out -------------------------------------------------------------------------------- /tests/data/metaconcurrency.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/metaconcurrency.out -------------------------------------------------------------------------------- /tests/data/modify.out.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/modify.out.master -------------------------------------------------------------------------------- /tests/data/modrdn.out.master.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/modrdn.out.master.0 -------------------------------------------------------------------------------- /tests/data/modrdn.out.master.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/modrdn.out.master.1 -------------------------------------------------------------------------------- /tests/data/modrdn.out.master.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/modrdn.out.master.2 -------------------------------------------------------------------------------- /tests/data/modrdn.out.master.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/modrdn.out.master.3 -------------------------------------------------------------------------------- /tests/data/monitor1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/monitor1.out -------------------------------------------------------------------------------- /tests/data/monitor2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/monitor2.out -------------------------------------------------------------------------------- /tests/data/monitor3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/monitor3.out -------------------------------------------------------------------------------- /tests/data/monitor4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/monitor4.out -------------------------------------------------------------------------------- /tests/data/ndb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/ndb.conf -------------------------------------------------------------------------------- /tests/data/nis_sample.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/nis_sample.ldif -------------------------------------------------------------------------------- /tests/data/passwd.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/passwd.ldif -------------------------------------------------------------------------------- /tests/data/pcache.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/pcache.out -------------------------------------------------------------------------------- /tests/data/ppolicy.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/ppolicy.ldif -------------------------------------------------------------------------------- /tests/data/referrals.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/referrals.ldif -------------------------------------------------------------------------------- /tests/data/referrals.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/referrals.out -------------------------------------------------------------------------------- /tests/data/regressions/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/regressions/README -------------------------------------------------------------------------------- /tests/data/regressions/its4184/README: -------------------------------------------------------------------------------- 1 | ITS#4184: fixed in 2.3.14 2 | -------------------------------------------------------------------------------- /tests/data/relay.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/relay.out -------------------------------------------------------------------------------- /tests/data/retcode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/retcode.conf -------------------------------------------------------------------------------- /tests/data/rootdse.ldif: -------------------------------------------------------------------------------- 1 | dn: 2 | vendorName: The OpenLDAP Project 3 | -------------------------------------------------------------------------------- /tests/data/search.out.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/search.out.master -------------------------------------------------------------------------------- /tests/data/search.out.xsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/search.out.xsearch -------------------------------------------------------------------------------- /tests/data/slapd-2db.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-2db.conf -------------------------------------------------------------------------------- /tests/data/slapd-aci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-aci.conf -------------------------------------------------------------------------------- /tests/data/slapd-acl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-acl.conf -------------------------------------------------------------------------------- /tests/data/slapd-chain1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-chain1.conf -------------------------------------------------------------------------------- /tests/data/slapd-chain2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-chain2.conf -------------------------------------------------------------------------------- /tests/data/slapd-component.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-component.conf -------------------------------------------------------------------------------- /tests/data/slapd-dds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-dds.conf -------------------------------------------------------------------------------- /tests/data/slapd-dn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-dn.conf -------------------------------------------------------------------------------- /tests/data/slapd-dnssrv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-dnssrv.conf -------------------------------------------------------------------------------- /tests/data/slapd-dynamic.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-dynamic.ldif -------------------------------------------------------------------------------- /tests/data/slapd-dynlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-dynlist.conf -------------------------------------------------------------------------------- /tests/data/slapd-emptydn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-emptydn.conf -------------------------------------------------------------------------------- /tests/data/slapd-glue-ldap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-glue-ldap.conf -------------------------------------------------------------------------------- /tests/data/slapd-glue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-glue.conf -------------------------------------------------------------------------------- /tests/data/slapd-idassert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-idassert.conf -------------------------------------------------------------------------------- /tests/data/slapd-ldapglue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-ldapglue.conf -------------------------------------------------------------------------------- /tests/data/slapd-limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-limits.conf -------------------------------------------------------------------------------- /tests/data/slapd-master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-master.conf -------------------------------------------------------------------------------- /tests/data/slapd-meta.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-meta.conf -------------------------------------------------------------------------------- /tests/data/slapd-nis-master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-nis-master.conf -------------------------------------------------------------------------------- /tests/data/slapd-passwd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-passwd.conf -------------------------------------------------------------------------------- /tests/data/slapd-pcache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-pcache.conf -------------------------------------------------------------------------------- /tests/data/slapd-ppolicy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-ppolicy.conf -------------------------------------------------------------------------------- /tests/data/slapd-proxyauthz.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-proxyauthz.conf -------------------------------------------------------------------------------- /tests/data/slapd-pw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-pw.conf -------------------------------------------------------------------------------- /tests/data/slapd-ref-slave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-ref-slave.conf -------------------------------------------------------------------------------- /tests/data/slapd-referrals.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-referrals.conf -------------------------------------------------------------------------------- /tests/data/slapd-refint.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-refint.conf -------------------------------------------------------------------------------- /tests/data/slapd-relay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-relay.conf -------------------------------------------------------------------------------- /tests/data/slapd-retcode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-retcode.conf -------------------------------------------------------------------------------- /tests/data/slapd-schema.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-schema.conf -------------------------------------------------------------------------------- /tests/data/slapd-sql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-sql.conf -------------------------------------------------------------------------------- /tests/data/slapd-tls-sasl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-tls-sasl.conf -------------------------------------------------------------------------------- /tests/data/slapd-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-tls.conf -------------------------------------------------------------------------------- /tests/data/slapd-unique.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-unique.conf -------------------------------------------------------------------------------- /tests/data/slapd-valregex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-valregex.conf -------------------------------------------------------------------------------- /tests/data/slapd-valsort.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-valsort.conf -------------------------------------------------------------------------------- /tests/data/slapd-whoami.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd-whoami.conf -------------------------------------------------------------------------------- /tests/data/slapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd.conf -------------------------------------------------------------------------------- /tests/data/slapd2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/slapd2.conf -------------------------------------------------------------------------------- /tests/data/sql-read.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/sql-read.out -------------------------------------------------------------------------------- /tests/data/sql-write.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/sql-write.out -------------------------------------------------------------------------------- /tests/data/subtree-rename.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/subtree-rename.out -------------------------------------------------------------------------------- /tests/data/test-chain1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-chain1.ldif -------------------------------------------------------------------------------- /tests/data/test-chain2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-chain2.ldif -------------------------------------------------------------------------------- /tests/data/test-compmatch.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-compmatch.ldif -------------------------------------------------------------------------------- /tests/data/test-dn.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-dn.ldif -------------------------------------------------------------------------------- /tests/data/test-emptydn1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-emptydn1.ldif -------------------------------------------------------------------------------- /tests/data/test-emptydn2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-emptydn2.ldif -------------------------------------------------------------------------------- /tests/data/test-glued.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-glued.ldif -------------------------------------------------------------------------------- /tests/data/test-idassert1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-idassert1.ldif -------------------------------------------------------------------------------- /tests/data/test-idassert2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-idassert2.ldif -------------------------------------------------------------------------------- /tests/data/test-lang.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-lang.ldif -------------------------------------------------------------------------------- /tests/data/test-ldapglue.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-ldapglue.ldif -------------------------------------------------------------------------------- /tests/data/test-limits.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-limits.ldif -------------------------------------------------------------------------------- /tests/data/test-meta.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-meta.ldif -------------------------------------------------------------------------------- /tests/data/test-modify.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-modify.ldif -------------------------------------------------------------------------------- /tests/data/test-ordered-cp.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-ordered-cp.ldif -------------------------------------------------------------------------------- /tests/data/test-ordered.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-ordered.ldif -------------------------------------------------------------------------------- /tests/data/test-refint.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-refint.ldif -------------------------------------------------------------------------------- /tests/data/test-reordered.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-reordered.ldif -------------------------------------------------------------------------------- /tests/data/test-unique.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-unique.ldif -------------------------------------------------------------------------------- /tests/data/test-unordered.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-unordered.ldif -------------------------------------------------------------------------------- /tests/data/test-valsort.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-valsort.ldif -------------------------------------------------------------------------------- /tests/data/test-whoami.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test-whoami.ldif -------------------------------------------------------------------------------- /tests/data/test.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test.ldif -------------------------------------------------------------------------------- /tests/data/test.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/test.schema -------------------------------------------------------------------------------- /tests/data/tls/conf/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/tls/conf/openssl.cnf -------------------------------------------------------------------------------- /tests/data/tls/create-crt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/tls/create-crt.sh -------------------------------------------------------------------------------- /tests/data/valsort1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/valsort1.out -------------------------------------------------------------------------------- /tests/data/valsort2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/valsort2.out -------------------------------------------------------------------------------- /tests/data/valsort3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/data/valsort3.out -------------------------------------------------------------------------------- /tests/progs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/Makefile.am -------------------------------------------------------------------------------- /tests/progs/ldif-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/ldif-filter.c -------------------------------------------------------------------------------- /tests/progs/slapd-addel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-addel.c -------------------------------------------------------------------------------- /tests/progs/slapd-auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-auth.c -------------------------------------------------------------------------------- /tests/progs/slapd-bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-bind.c -------------------------------------------------------------------------------- /tests/progs/slapd-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-common.c -------------------------------------------------------------------------------- /tests/progs/slapd-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-common.h -------------------------------------------------------------------------------- /tests/progs/slapd-modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-modify.c -------------------------------------------------------------------------------- /tests/progs/slapd-modrdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-modrdn.c -------------------------------------------------------------------------------- /tests/progs/slapd-mtread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-mtread.c -------------------------------------------------------------------------------- /tests/progs/slapd-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-read.c -------------------------------------------------------------------------------- /tests/progs/slapd-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-search.c -------------------------------------------------------------------------------- /tests/progs/slapd-tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/progs/slapd-tester.c -------------------------------------------------------------------------------- /tests/run.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/run.in -------------------------------------------------------------------------------- /tests/scripts/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/all -------------------------------------------------------------------------------- /tests/scripts/defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/defines.sh -------------------------------------------------------------------------------- /tests/scripts/its-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/its-all -------------------------------------------------------------------------------- /tests/scripts/passwd-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/passwd-search -------------------------------------------------------------------------------- /tests/scripts/relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/relay -------------------------------------------------------------------------------- /tests/scripts/sql-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/sql-all -------------------------------------------------------------------------------- /tests/scripts/sql-test000-read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/sql-test000-read -------------------------------------------------------------------------------- /tests/scripts/sql-test900-write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/sql-test900-write -------------------------------------------------------------------------------- /tests/scripts/start-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/start-server -------------------------------------------------------------------------------- /tests/scripts/start-server-nolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/start-server-nolog -------------------------------------------------------------------------------- /tests/scripts/start-server2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/start-server2 -------------------------------------------------------------------------------- /tests/scripts/test000-mdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test000-mdbx -------------------------------------------------------------------------------- /tests/scripts/test000-rootdse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test000-rootdse -------------------------------------------------------------------------------- /tests/scripts/test001-slapadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test001-slapadd -------------------------------------------------------------------------------- /tests/scripts/test002-populate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test002-populate -------------------------------------------------------------------------------- /tests/scripts/test003-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test003-search -------------------------------------------------------------------------------- /tests/scripts/test004-modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test004-modify -------------------------------------------------------------------------------- /tests/scripts/test005-modrdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test005-modrdn -------------------------------------------------------------------------------- /tests/scripts/test006-acls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test006-acls -------------------------------------------------------------------------------- /tests/scripts/test007-slapmodify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test007-slapmodify -------------------------------------------------------------------------------- /tests/scripts/test009-referral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test009-referral -------------------------------------------------------------------------------- /tests/scripts/test010-passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test010-passwd -------------------------------------------------------------------------------- /tests/scripts/test013-language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test013-language -------------------------------------------------------------------------------- /tests/scripts/test014-whoami: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test014-whoami -------------------------------------------------------------------------------- /tests/scripts/test015-xsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test015-xsearch -------------------------------------------------------------------------------- /tests/scripts/test016-subref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test016-subref -------------------------------------------------------------------------------- /tests/scripts/test020-pcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test020-pcache -------------------------------------------------------------------------------- /tests/scripts/test022-ppolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test022-ppolicy -------------------------------------------------------------------------------- /tests/scripts/test023-refint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test023-refint -------------------------------------------------------------------------------- /tests/scripts/test024-unique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test024-unique -------------------------------------------------------------------------------- /tests/scripts/test025-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test025-limits -------------------------------------------------------------------------------- /tests/scripts/test026-dn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test026-dn -------------------------------------------------------------------------------- /tests/scripts/test027-emptydn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test027-emptydn -------------------------------------------------------------------------------- /tests/scripts/test028-idassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test028-idassert -------------------------------------------------------------------------------- /tests/scripts/test029-ldapglue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test029-ldapglue -------------------------------------------------------------------------------- /tests/scripts/test030-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test030-relay -------------------------------------------------------------------------------- /tests/scripts/test032-chain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test032-chain -------------------------------------------------------------------------------- /tests/scripts/test035-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test035-meta -------------------------------------------------------------------------------- /tests/scripts/test037-manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test037-manage -------------------------------------------------------------------------------- /tests/scripts/test038-retcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test038-retcode -------------------------------------------------------------------------------- /tests/scripts/test041-aci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test041-aci -------------------------------------------------------------------------------- /tests/scripts/test042-valsort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test042-valsort -------------------------------------------------------------------------------- /tests/scripts/test044-dynlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test044-dynlist -------------------------------------------------------------------------------- /tests/scripts/test046-dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test046-dds -------------------------------------------------------------------------------- /tests/scripts/test047-ldap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test047-ldap -------------------------------------------------------------------------------- /tests/scripts/test052-memberof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test052-memberof -------------------------------------------------------------------------------- /tests/scripts/test055-valregex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test055-valregex -------------------------------------------------------------------------------- /tests/scripts/test056-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test056-monitor -------------------------------------------------------------------------------- /tests/scripts/test060-mt-hot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test060-mt-hot -------------------------------------------------------------------------------- /tests/scripts/test064-constraint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test064-constraint -------------------------------------------------------------------------------- /tests/scripts/test065-proxyauthz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test065-proxyauthz -------------------------------------------------------------------------------- /tests/scripts/test066-autoca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test066-autoca -------------------------------------------------------------------------------- /tests/scripts/test067-tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/test067-tls -------------------------------------------------------------------------------- /tests/scripts/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erthink/ReOpenLDAP/HEAD/tests/scripts/valgrind.supp --------------------------------------------------------------------------------