├── .gitignore ├── .gitmodules ├── AUTHORS ├── COPYING ├── ChangeLog.md ├── Makefile.am ├── NEWS.md ├── README.md ├── TODO.md ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── doc ├── .gitignore ├── Doxyfile.in ├── ldap2csv.1.in ├── ldap2json.1.in ├── ldapdebug.1.in ├── ldapinfo.1.in ├── ldaptree.1.in ├── oid.txt ├── oidspecs │ ├── iana-ldap-parameters.oidspec │ ├── rfc │ │ ├── rfc2252.oidspec │ │ ├── rfc4512.oidspec │ │ ├── rfc4517.oidspec │ │ ├── rfc4523.oidspec │ │ └── rfc4530.oidspec │ ├── template.oidspec │ └── vendors │ │ └── microsoft.oidspec ├── references │ └── libldap │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ └── ldap_search_ext.c └── rfc │ ├── README.md │ ├── rfc2252.txt │ ├── rfc4510.txt │ ├── rfc4511.txt │ ├── rfc4512.txt │ ├── rfc4513.txt │ ├── rfc4514.txt │ ├── rfc4515.txt │ ├── rfc4516.txt │ ├── rfc4517.txt │ ├── rfc4518.txt │ ├── rfc4519.txt │ ├── rfc4520.txt │ ├── rfc4521.txt │ ├── rfc4522.txt │ ├── rfc4523.txt │ ├── rfc4524.txt │ ├── rfc4525.txt │ ├── rfc4526.txt │ ├── rfc4527.txt │ ├── rfc4528.txt │ ├── rfc4529.txt │ ├── rfc4530.txt │ ├── rfc4531.txt │ ├── rfc4532.txt │ └── rfc4533.txt ├── include ├── .gitignore ├── ldapschema.h ├── ldaputils.h ├── ldaputils_cdefs.h └── ldaputils_compat.h ├── lib ├── libldapschema │ ├── .gitignore │ ├── lerror.c │ ├── lerror.h │ ├── lformat.c │ ├── lformat.h │ ├── libldapschema.h │ ├── libldapschema.sym │ ├── lldap.c │ ├── lldap.h │ ├── llexer.c │ ├── llexer.h │ ├── lmemory.c │ ├── lmemory.h │ ├── loutput.c │ ├── loutput.h │ ├── lquery.c │ ├── lquery.h │ ├── lsort.c │ ├── lsort.h │ ├── lspec.c │ └── lspec.h └── libldaputils │ ├── lconfig.c │ ├── lconfig.h │ ├── lentry.c │ ├── lentry.h │ ├── libldaputils.h │ ├── libldaputils.sym │ ├── lldap.c │ ├── lldap.h │ ├── lmemory.c │ ├── lmemory.h │ ├── lpasswd.c │ ├── lpasswd.h │ ├── ltree.c │ └── ltree.h ├── m4 └── .gitignore ├── src ├── ldap2csv.c ├── ldap2json.c ├── ldapconns.c ├── ldapdebug.c ├── ldapdn2str.c ├── ldapinfo.c ├── ldapppolicy.c ├── ldapschema.c ├── ldaptree.c └── utils │ └── oidspectool │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── example.oidspec │ ├── oidspeclexer.l │ ├── oidspecparser.y │ ├── oidspectool.c │ └── oidspectool.h └── tests ├── ldaptest.c └── readline.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/TODO.md -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /Doxyfile.in.bak 2 | /doxygen/ 3 | -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/ldap2csv.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/ldap2csv.1.in -------------------------------------------------------------------------------- /doc/ldap2json.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/ldap2json.1.in -------------------------------------------------------------------------------- /doc/ldapdebug.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/ldapdebug.1.in -------------------------------------------------------------------------------- /doc/ldapinfo.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/ldapinfo.1.in -------------------------------------------------------------------------------- /doc/ldaptree.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/ldaptree.1.in -------------------------------------------------------------------------------- /doc/oid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oid.txt -------------------------------------------------------------------------------- /doc/oidspecs/iana-ldap-parameters.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/iana-ldap-parameters.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/rfc/rfc2252.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/rfc/rfc2252.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/rfc/rfc4512.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/rfc/rfc4512.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/rfc/rfc4517.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/rfc/rfc4517.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/rfc/rfc4523.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/rfc/rfc4523.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/rfc/rfc4530.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/rfc/rfc4530.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/template.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/template.oidspec -------------------------------------------------------------------------------- /doc/oidspecs/vendors/microsoft.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/oidspecs/vendors/microsoft.oidspec -------------------------------------------------------------------------------- /doc/references/libldap/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /ldap_search_ext 3 | -------------------------------------------------------------------------------- /doc/references/libldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/references/libldap/Makefile -------------------------------------------------------------------------------- /doc/references/libldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/references/libldap/README.md -------------------------------------------------------------------------------- /doc/references/libldap/ldap_search_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/references/libldap/ldap_search_ext.c -------------------------------------------------------------------------------- /doc/rfc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/README.md -------------------------------------------------------------------------------- /doc/rfc/rfc2252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc2252.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4510.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4511.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4512.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4513.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4513.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4514.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4515.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4516.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4516.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4517.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4518.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4518.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4519.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4520.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4520.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4521.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4522.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4522.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4523.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4523.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4524.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4525.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4526.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4526.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4527.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4527.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4528.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4529.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4529.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4530.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4530.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4531.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4532.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4532.txt -------------------------------------------------------------------------------- /doc/rfc/rfc4533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/doc/rfc/rfc4533.txt -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/ldapschema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/include/ldapschema.h -------------------------------------------------------------------------------- /include/ldaputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/include/ldaputils.h -------------------------------------------------------------------------------- /include/ldaputils_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/include/ldaputils_cdefs.h -------------------------------------------------------------------------------- /include/ldaputils_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/include/ldaputils_compat.h -------------------------------------------------------------------------------- /lib/libldapschema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/.gitignore -------------------------------------------------------------------------------- /lib/libldapschema/lerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lerror.c -------------------------------------------------------------------------------- /lib/libldapschema/lerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lerror.h -------------------------------------------------------------------------------- /lib/libldapschema/lformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lformat.c -------------------------------------------------------------------------------- /lib/libldapschema/lformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lformat.h -------------------------------------------------------------------------------- /lib/libldapschema/libldapschema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/libldapschema.h -------------------------------------------------------------------------------- /lib/libldapschema/libldapschema.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/libldapschema.sym -------------------------------------------------------------------------------- /lib/libldapschema/lldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lldap.c -------------------------------------------------------------------------------- /lib/libldapschema/lldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lldap.h -------------------------------------------------------------------------------- /lib/libldapschema/llexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/llexer.c -------------------------------------------------------------------------------- /lib/libldapschema/llexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/llexer.h -------------------------------------------------------------------------------- /lib/libldapschema/lmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lmemory.c -------------------------------------------------------------------------------- /lib/libldapschema/lmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lmemory.h -------------------------------------------------------------------------------- /lib/libldapschema/loutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/loutput.c -------------------------------------------------------------------------------- /lib/libldapschema/loutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/loutput.h -------------------------------------------------------------------------------- /lib/libldapschema/lquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lquery.c -------------------------------------------------------------------------------- /lib/libldapschema/lquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lquery.h -------------------------------------------------------------------------------- /lib/libldapschema/lsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lsort.c -------------------------------------------------------------------------------- /lib/libldapschema/lsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lsort.h -------------------------------------------------------------------------------- /lib/libldapschema/lspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lspec.c -------------------------------------------------------------------------------- /lib/libldapschema/lspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldapschema/lspec.h -------------------------------------------------------------------------------- /lib/libldaputils/lconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lconfig.c -------------------------------------------------------------------------------- /lib/libldaputils/lconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lconfig.h -------------------------------------------------------------------------------- /lib/libldaputils/lentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lentry.c -------------------------------------------------------------------------------- /lib/libldaputils/lentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lentry.h -------------------------------------------------------------------------------- /lib/libldaputils/libldaputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/libldaputils.h -------------------------------------------------------------------------------- /lib/libldaputils/libldaputils.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/libldaputils.sym -------------------------------------------------------------------------------- /lib/libldaputils/lldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lldap.c -------------------------------------------------------------------------------- /lib/libldaputils/lldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lldap.h -------------------------------------------------------------------------------- /lib/libldaputils/lmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lmemory.c -------------------------------------------------------------------------------- /lib/libldaputils/lmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lmemory.h -------------------------------------------------------------------------------- /lib/libldaputils/lpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lpasswd.c -------------------------------------------------------------------------------- /lib/libldaputils/lpasswd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/lpasswd.h -------------------------------------------------------------------------------- /lib/libldaputils/ltree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/ltree.c -------------------------------------------------------------------------------- /lib/libldaputils/ltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/lib/libldaputils/ltree.h -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /src/ldap2csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldap2csv.c -------------------------------------------------------------------------------- /src/ldap2json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldap2json.c -------------------------------------------------------------------------------- /src/ldapconns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldapconns.c -------------------------------------------------------------------------------- /src/ldapdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldapdebug.c -------------------------------------------------------------------------------- /src/ldapdn2str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldapdn2str.c -------------------------------------------------------------------------------- /src/ldapinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldapinfo.c -------------------------------------------------------------------------------- /src/ldapppolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldapppolicy.c -------------------------------------------------------------------------------- /src/ldapschema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldapschema.c -------------------------------------------------------------------------------- /src/ldaptree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/ldaptree.c -------------------------------------------------------------------------------- /src/utils/oidspectool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/.gitignore -------------------------------------------------------------------------------- /src/utils/oidspectool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/Makefile -------------------------------------------------------------------------------- /src/utils/oidspectool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/README.md -------------------------------------------------------------------------------- /src/utils/oidspectool/example.oidspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/example.oidspec -------------------------------------------------------------------------------- /src/utils/oidspectool/oidspeclexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/oidspeclexer.l -------------------------------------------------------------------------------- /src/utils/oidspectool/oidspecparser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/oidspecparser.y -------------------------------------------------------------------------------- /src/utils/oidspectool/oidspectool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/oidspectool.c -------------------------------------------------------------------------------- /src/utils/oidspectool/oidspectool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/src/utils/oidspectool/oidspectool.h -------------------------------------------------------------------------------- /tests/ldaptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/tests/ldaptest.c -------------------------------------------------------------------------------- /tests/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bindle/ldap-utils/HEAD/tests/readline.c --------------------------------------------------------------------------------