-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.lisp
70 lines (70 loc) · 1.35 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
(in-package #:maiden-user)
(defpackage #:maiden-relay
(:nicknames #:org.shirakumo.maiden.clients.relay)
(:local-nicknames (#:v #:org.shirakumo.verbose))
(:use #:cl #:maiden #:maiden-serialize #:maiden-networking)
;; client.lisp
(:export
#:relay-client
#:remote
#:process)
;; conditions.lisp
(:export
#:relay-condition
#:carrier-condition
#:message
#:target-condition
#:target
#:no-relay-target-specified
#:relay-route-not-found
#:relay-link-not-found
#:client-version-mismatch
#:remote-version)
;; containers.lisp
(:export
#:subscription-update
#:target
#:subscriber
#:subscription
#:event-type
#:filter
#:unsubscription
#:network-update
#:new
#:bad
#:make-network-update
#:transport
#:make-transport)
;; events.lisp
(:export
#:relay-instruction-event
#:data-response-event
#:source
#:response-event
#:response
#:slot-event
#:slot
#:object
#:slot-value-event
#:slot-setf-event
#:slot-makunbound-event
#:slot-boundp-event
#:generic-call-event
#:form)
;; relay.lisp
(:export
#:relay
#:subscriptions
#:my-subscriptions
#:routable-p
#:update
#:relay
#:connect
#:subscribe
#:unsubscribe)
;; virtual-client.lisp
(:export
#:virtual-client
#:links
#:make-virtual-client
#:define-virtual-client-method))