Source tree pruned and flattened.
[clldap.git] / package.lisp
blob54e8f6821646cf72e34d31ab554b99c15e37510b
1 (defpackage :net.quadium.ldap
2 (:nicknames :ldap :ldif)
3 (:use :common-lisp :cl-base64 :split-sequence)
4 (:export #:*password-file* #:*simple-auth-p* #:*ldapsearch-command* #:*ldapmodify-command*
5 #:convert-search-filter
6 #:ldap-search #:ldap-fetch-by-dn
7 #:ldap-modify
8 ;; from old package ldif:
9 #:record-distinguished-name #:record-object-classes #:record-attributes-list #:record-attributes
10 #:record-attribute #:record-attribute-value
11 #:attribute-options #:attribute-value
12 #:change-record-change-type #:record->add-record #:record->replace-record
13 #:read-record #:parse-ldif-stream #:parse-ldif-file
14 #:write-record #:write-change-record))
16 (in-package :net.quadium.ldap)