forked from orthecreedence/wookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
71 lines (60 loc) · 1.76 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
61
62
63
64
65
66
67
68
69
70
(defpackage :wookie
(:use :cl :wookie-config :wookie-util :cl-async-future)
(:export #:*log-level*
#:*error-handler*
#:*hide-version*
#:*tmp-file-store*
#:wookie-error
#:wookie-error-msg
#:wookie-error-socket
#:add-hook
#:remove-hook
#:route-error
#:route-not-found
#:clear-routes
#:clear-route
#:next-route
#:defroute
#:with-vhost
#:clear-hooks
#:add-hook
#:remove-hook
#:response-error
#:response-error-response
#:response-already-sent
#:request
#:request-socket
#:request-method
#:request-resource
#:request-headers
#:request-uri
#:request-data
#:request-plugin-data
#:request-body-callback
#:request-http
#:response
#:response-headers
#:response-finished-p
#:get-socket
#:with-chunking
#:send-response
#:start-response
#:finish-response
#:*enabled-plugins*
#:*plugin-folders*
#:register-plugin
#:plugin-config
#:plugin-request-data
#:load-plugins
#:unload-plugin
#:defplugin
#:defplugfun
#:listener
#:listener-bind
#:listener-port
#:listener-backlog
#:start-server
#-(or :wookie-no-ssl) #:ssl-listener
#-(or :wookie-no-ssl) #:listener-certificate
#-(or :wookie-no-ssl) #:listener-key
#-(or :wookie-no-ssl) #:listener-password))