source: tags/0.9.1/package.lisp

Last change on this file was 204, checked in by Erik Huelsmann, 17 years ago

DCC implementation checkpoint: Working DCC CHAT with passive local side.
'passive local' == either remote initiates or local passive initiative.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision URL
File size: 3.8 KB
Line 
1;;;; $Id: package.lisp 204 2007-04-30 07:56:05Z ehuelsmann $
2;;;; $URL: tags/0.9.1/package.lisp $
3
4;;;; See the LICENSE file for licensing information.
5
6(in-package :cl-user)
7
8;; the exports list needs some cleanup/clarification/categorization
9(eval-when (:execute :load-toplevel :compile-toplevel)
10  (defpackage :cl-irc
11      (:use :cl)
12    (:nicknames :irc)
13    (:export :read-message-loop
14             :read-message
15             :irc-message-event
16             :start-background-message-handler
17             :stop-background-message-handler
18             :destructuring-arguments
19             :&req
20             :socket-connect
21             :server-name
22             :server-port
23             :no-such-reply
24             :irc-mode
25             :boolean-value-mode
26             :single-value-mode
27             :list-value-mode
28             :add-mode
29             :remove-mode
30             :has-mode-p
31             :has-mode-value-p
32             :get-mode
33             :set-mode
34             :unset-mode
35             :parse-mode-arguments
36             :parse-raw-message
37             :normalize-nickname
38             :normalize-channel-name
39             :name
40             :normalized-name
41             :topic
42             :modes
43             :visibility
44             :user-count
45             :users
46             :network-stream
47             :output-stream
48             :client-stream
49             :channels
50             :add-hook
51             :remove-hook
52             :remove-hooks
53             :remove-all-hooks
54             :add-default-hooks
55             :get-hooks
56             :make-user
57             :nickname
58             :normalized-nickname
59             :username
60             :hostname
61             :realname
62             :change-nickname
63             :irc-message
64             :source
65             :user
66             :password
67             :host
68             :command
69             :arguments
70             :trailing-argument
71             :connection
72             :received-time
73             :raw-message-string
74             :make-connection
75             :make-channel
76             :channel
77             :client-log
78             :find-channel
79             :find-reply-name
80             :remove-channel
81             :remove-all-channels
82             :add-channel
83             :find-user
84             :add-user
85             :remove-all-users
86             :remove-user
87             :self-message-p
88             :user-eq-me-p
89             :mask-matches-p
90             :pass
91             :nick
92             :user-
93             :oper
94             :mode
95             :op
96             :deop
97             :voice
98             :devoice
99             :ban
100             :unban
101             :service
102             :quit
103             :squit
104             :join
105             :part
106             :part-all
107             :topic-
108             :names
109             :list-
110             :invite
111             :kick
112             :privmsg
113             :notice
114             :motd-
115             :lusers
116             :version
117             :stats
118             :links
119             :time-
120             :connect
121             :trace-
122             :admin
123             :info
124             :servlist
125             :squery
126             :who
127             :whois
128             :whowas
129             :kill
130             :ping
131             :pong
132             :error-
133             :away
134             :rehash
135             :die
136             :restart-
137             :summon
138             :users-
139             :wallops
140             :userhost
141             :ison
142             ;; DCC specific dictionary
143             :dcc-connection
144             :dcc-chat-connection
145             :irc-connection
146             :close-on-main
147             :remote-user
148             :dcc-close
149             :dcc-message
150             :dcc-message-event
151             :make-dcc-chat-connection
152             :ctcp-chat-initiate
153             :dcc-request-reject
154             :dcc-request-accept
155             :dcc-request-cancel
156             )))
157
Note: See TracBrowser for help on using the repository browser.