source: tags/cl-irc_upstream_version_0_5/package.lisp

Last change on this file was 2, checked in by Erik Enge, 20 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1;;;; $Id: package.lisp 2 2004-01-05 14:13:03Z eenge $
2;;;; $Source$
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             :start-background-message-handler
16             :stop-background-message-handler
17             :send-message
18             :server-name
19             :no-such-reply
20             :parse-raw-message
21             :normalize-nickname
22             :normalize-channel-name
23             :server-stream
24             :client-stream
25             :channels
26             :configuration
27             :dangling-users
28             :channel-list
29             :add-hook
30             :remove-hook
31             :remove-hooks
32             :get-hooks
33             :make-user
34             :change-nickname
35             :irc-message
36             :source
37             :user
38             :host
39             :command
40             :arguments
41             :trailing-argument
42             :connection
43             :received-time
44             :raw-message-string
45             :make-connection
46             :make-channel
47             :client-log
48             :find-channel
49             :find-reply-name
50             :remove-channel
51             :remove-all-channels
52             :add-channel
53             :find-user
54             :add-user
55             :remove-all-users
56             :remove-user
57             :self-message-p
58             :pass
59             :nick
60             :user-
61             :oper
62             :mode
63             :op
64             :deop
65             :voice
66             :devoice
67             :ban
68             :unban
69             :service
70             :quit
71             :squit
72             :join
73             :part
74             :part-all
75             :topic-
76             :names
77             :list-
78             :invite
79             :kick
80             :privmsg
81             :notice
82             :motd-
83             :lusers
84             :version
85             :stats
86             :links
87             :time-
88             :connect
89             :trace-
90             :admin
91             :info
92             :servlist
93             :squery
94             :who
95             :whois
96             :whowas
97             :kill
98             :ping
99             :pong
100             :error-
101             :away
102             :rehash
103             :die
104             :restart-
105             :summon
106             :users-
107             :wallops
108             :userhost
109             :ison)))
110
Note: See TracBrowser for help on using the repository browser.