-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.lisp
60 lines (60 loc) · 1.1 KB
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(defpackage #:org.shirakumo.ldapper
(:use #:cl)
(:local-nicknames (#:v #:org.shirakumo.verbose))
;; conditions.lisp
(:export
#:ldapper-condition
#:ldapper-error
#:no-such-account
#:name
#:authentication-failed
#:permission-denied
#:attribute-required
#:unknown-command)
;; database.lisp
(:export
#:*postgres-db*
#:*postgres-user*
#:*postgres-pass*
#:*postgres-host*
#:connect
#:disconnect
#:list-accounts
#:find-account
#:ensure-account
#:account-admin-p
#:search-accounts
#:filter-accounts
#:authenticate
#:make-account
#:insert-account
#:edit-account
#:delete-account)
;; ldif.lisp
(:export
#:parse-ldif
#:ldap-record->account
#:account->ldap-record
#:account->ldif-text
#:import-from-ldif)
;; ldap.lisp
(:export)
;; commands.lisp
(:export)
;; results.lisp
(:export)
;; server.lisp
(:export
#:*base-dn*
#:*ldap-servers*
#:*workers*
#:start
#:stop)
;; protocol.lisp
(:export)
;; config.lisp
(:export
#:read-config-file
#:read-envvars
#:read-config
#:print-config))